Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/kernel

    r85b1deb rea8b2f7  
    113113        pthread_t kernel_thread;
    114114
     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
    115122        // RunThread data
    116123        // Action to do after a thread is ran
     
    125132
    126133        // 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;
    135136
    136137        // Link lists fields
Note: See TracChangeset for help on using the changeset viewer.