Changes in src/libcfa/concurrency/kernel [85b1deb:ea8b2f7]
- File:
-
- 1 edited
-
src/libcfa/concurrency/kernel (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/kernel
r85b1deb rea8b2f7 113 113 pthread_t kernel_thread; 114 114 115 // Termination 116 // Set to true to notify the processor should terminate 117 volatile bool do_terminate; 118 119 // Termination synchronisation 120 semaphore terminated; 121 115 122 // RunThread data 116 123 // Action to do after a thread is ran … … 125 132 126 133 // Idle lock 127 __bin_sem_t idleLock; 128 129 // Termination 130 // Set to true to notify the processor should terminate 131 volatile bool do_terminate; 132 133 // Termination synchronisation 134 semaphore terminated; 134 sem_t idleLock; 135 // __bin_sem_t idleLock; 135 136 136 137 // Link lists fields
Note:
See TracChangeset
for help on using the changeset viewer.