Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/kernel

    r2ac095d rc81ebf9  
    2828//-----------------------------------------------------------------------------
    2929// Locks
    30 bool try_lock( spinlock * DEBUG_CTX_PARAM2 );
    31 void lock    ( spinlock * DEBUG_CTX_PARAM2 );
    32 void unlock  ( spinlock * );
     30bool try_lock( spinlock * );
     31void lock( spinlock * );
     32void unlock( spinlock * );
    3333
    3434struct signal_once {
     
    6868        unsigned short thrd_count;
    6969};
    70 static inline void ?{}(FinishAction * this) {
     70static inline void ?{}(FinishAction * this) { 
    7171        this->action_code = No_Action;
    7272        this->thrd = NULL;
     
    7878        struct processorCtx_t * runner;
    7979        cluster * cltr;
     80        coroutine_desc * current_coroutine;
     81        thread_desc * current_thread;
    8082        pthread_t kernel_thread;
    81 
     83       
    8284        signal_once terminated;
    8385        volatile bool is_terminated;
     
    8890        unsigned int preemption;
    8991
     92        unsigned short disable_preempt_count;
     93
    9094        bool pending_preemption;
    91 
    92         char * last_enable;
    9395};
    9496
Note: See TracChangeset for help on using the changeset viewer.