Changes in src/libcfa/concurrency/kernel [348006f:9c31349]
- File:
-
- 1 edited
-
src/libcfa/concurrency/kernel (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/kernel
r348006f r9c31349 30 30 void lock( spinlock * ); 31 31 void unlock( spinlock * ); 32 33 struct signal_once { 34 volatile bool condition; 35 struct spinlock lock; 36 struct simple_thread_list blocked; 37 }; 38 39 void ?{}(signal_once * this); 40 void ^?{}(signal_once * this); 32 41 33 42 void wait( signal_once * );
Note:
See TracChangeset
for help on using the changeset viewer.