Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/kernel.hfa

    rfc59b580 r5cb51502  
    180180
    181181// Idle Sleep
    182 struct __cluster_proc_list {
     182struct __cluster_idles {
    183183        // Spin lock protecting the queue
    184184        volatile uint64_t lock;
     
    191191
    192192        // 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;
    197194};
    198195
     
    210207
    211208        // List of idle processors
    212         __cluster_proc_list procs;
     209        __cluster_idles idles;
    213210
    214211        // List of threads
Note: See TracChangeset for help on using the changeset viewer.