- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel.hfa
r5cb51502 rfc59b580 180 180 181 181 // Idle Sleep 182 struct __cluster_ idles{182 struct __cluster_proc_list { 183 183 // Spin lock protecting the queue 184 184 volatile uint64_t lock; … … 191 191 192 192 // List of idle processors 193 dlist(processor, processor) list; 193 dlist(processor, processor) idles; 194 195 // List of active processors 196 dlist(processor, processor) actives; 194 197 }; 195 198 … … 207 210 208 211 // List of idle processors 209 __cluster_ idles idles;212 __cluster_proc_list procs; 210 213 211 214 // List of threads
Note:
See TracChangeset
for help on using the changeset viewer.