- File:
-
- 1 edited
-
libcfa/src/concurrency/locks.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/locks.hfa
rc131a02 r4aeaee5 43 43 void ?{}( info_thread(L) & this, $thread * t, uintptr_t info ); 44 44 void ^?{}( info_thread(L) & this ); 45 46 info_thread(L) *& Back( info_thread(L) * this );47 info_thread(L) *& Next( info_thread(L) * this );48 bool listed( info_thread(L) * this );49 45 } 50 46 … … 68 64 69 65 // List of blocked threads 70 Sequence( $thread ) blocked_threads;66 __queue_t( $thread ) blocked_threads; 71 67 72 68 // Count of current blocked threads
Note:
See TracChangeset
for help on using the changeset viewer.