Changes in src/libcfa/concurrency/kernel [5ea06d6:9c31349]
- File:
-
- 1 edited
-
src/libcfa/concurrency/kernel (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/kernel
r5ea06d6 r9c31349 32 32 33 33 struct signal_once { 34 volatile bool cond ;34 volatile bool condition; 35 35 struct spinlock lock; 36 struct __thread_queue_t blocked;36 struct simple_thread_list blocked; 37 37 }; 38 38 … … 46 46 // Cluster 47 47 struct cluster { 48 __thread_queue_t ready_queue;48 simple_thread_list ready_queue; 49 49 spinlock lock; 50 50 };
Note:
See TracChangeset
for help on using the changeset viewer.