- File:
-
- 1 edited
-
libcfa/src/concurrency/locks.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/locks.hfa
rd27b6be rf19497c 32 32 static inline void ^?{}( single_acquisition_lock & this ) {} 33 33 static inline void lock ( single_acquisition_lock & this ) { lock ( (blocking_lock &)this ); } 34 static inline bool try_lock ( single_acquisition_lock & this ) { returntry_lock( (blocking_lock &)this ); }34 static inline void try_lock ( single_acquisition_lock & this ) { try_lock( (blocking_lock &)this ); } 35 35 static inline void unlock ( single_acquisition_lock & this ) { unlock ( (blocking_lock &)this ); } 36 36 static inline void on_wait ( single_acquisition_lock & this ) { on_wait ( (blocking_lock &)this ); } … … 47 47 static inline void ^?{}( owner_lock & this ) {} 48 48 static inline void lock ( owner_lock & this ) { lock ( (blocking_lock &)this ); } 49 static inline bool try_lock ( owner_lock & this ) { returntry_lock( (blocking_lock &)this ); }49 static inline void try_lock ( owner_lock & this ) { try_lock( (blocking_lock &)this ); } 50 50 static inline void unlock ( owner_lock & this ) { unlock ( (blocking_lock &)this ); } 51 51 static inline void on_wait ( owner_lock & this ) { on_wait ( (blocking_lock &)this ); }
Note:
See TracChangeset
for help on using the changeset viewer.