- File:
-
- 1 edited
-
libcfa/src/concurrency/locks.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/locks.hfa
rddd473f r198e335 197 197 static inline $thread * unlock( fast_lock & this ) __attribute__((artificial)); 198 198 static inline $thread * unlock( fast_lock & this ) { 199 /* paranoid */ verify(active_thread() == this.owner); 199 $thread * thrd = active_thread(); 200 /* paranoid */ verify(thrd == this.owner); 200 201 201 202 // open 'owner' before unlocking anyone
Note:
See TracChangeset
for help on using the changeset viewer.