Changeset 949339b for libcfa/src/concurrency/mutex_stmt.hfa
- Timestamp:
- Sep 27, 2021, 2:09:55 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- cc287800
- Parents:
- 4e28d2e9 (diff), 056cbdb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
libcfa/src/concurrency/mutex_stmt.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/mutex_stmt.hfa
r4e28d2e9 r949339b 41 41 } 42 42 43 static inline L * __get_p ointer( L & lock) {44 return & lock;43 static inline L * __get_ptr( L & this ) { 44 return &this; 45 45 } 46 47 static inline L __get_type( L & this ); 48 49 static inline L __get_type( L * this ); 46 50 }
Note:
See TracChangeset
for help on using the changeset viewer.