- File:
-
- 1 edited
-
libcfa/src/concurrency/mutex.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/mutex.cfa
rfd54fef rbe73f30 164 164 } 165 165 166 forall( L &| is_lock(L))166 forall(dtype L | is_lock(L)) 167 167 void wait(condition_variable & this, L & l) { 168 168 lock( this.lock __cfaabi_dbg_ctx2 ); … … 176 176 //----------------------------------------------------------------------------- 177 177 // Scopes 178 forall( L &| is_lock(L))178 forall(dtype L | is_lock(L)) 179 179 void lock_all ( L * locks[], size_t count) { 180 180 // Sort locks based on addresses … … 188 188 } 189 189 190 forall( L &| is_lock(L))190 forall(dtype L | is_lock(L)) 191 191 void unlock_all( L * locks[], size_t count) { 192 192 // Lock all
Note:
See TracChangeset
for help on using the changeset viewer.