- File:
-
- 1 edited
-
libcfa/src/bits/weakso_locks.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/weakso_locks.hfa
rf19497c rd27b6be 70 70 static inline void ^?{}( multiple_acquisition_lock & this ) {} 71 71 static inline void lock ( multiple_acquisition_lock & this ) { lock ( (blocking_lock &)this ); } 72 static inline void try_lock ( multiple_acquisition_lock & this ) {try_lock( (blocking_lock &)this ); }72 static inline bool try_lock ( multiple_acquisition_lock & this ) { return try_lock( (blocking_lock &)this ); } 73 73 static inline void unlock ( multiple_acquisition_lock & this ) { unlock ( (blocking_lock &)this ); } 74 74 static inline void on_wait ( multiple_acquisition_lock & this ) { on_wait ( (blocking_lock &)this ); }
Note:
See TracChangeset
for help on using the changeset viewer.