- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel.hfa
rfc59b580 r5cb51502 180 180 181 181 // Idle Sleep 182 struct __cluster_ proc_list{182 struct __cluster_idles { 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) idles; 194 195 // List of active processors 196 dlist(processor, processor) actives; 193 dlist(processor, processor) list; 197 194 }; 198 195 … … 210 207 211 208 // List of idle processors 212 __cluster_ proc_list procs;209 __cluster_idles idles; 213 210 214 211 // List of threads
Note:
See TracChangeset
for help on using the changeset viewer.