- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel.hfa
rf0ce5f4 r92e7631 76 76 bool pending_preemption; 77 77 78 // Idle lock 79 __bin_sem_t idle Lock;78 // Idle lock (kernel semaphore) 79 __bin_sem_t idle; 80 80 81 81 // Termination … … 83 83 volatile bool do_terminate; 84 84 85 // Termination synchronisation 85 // Termination synchronisation (user semaphore) 86 86 semaphore terminated; 87 87 … … 126 126 127 127 // List of processors 128 __spinlock_t proc_list_lock;128 __spinlock_t idle_lock; 129 129 __dllist_t(struct processor) procs; 130 130 __dllist_t(struct processor) idles;
Note:
See TracChangeset
for help on using the changeset viewer.