Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/kernel

    rc81ebf9 r2ac095d  
    2828//-----------------------------------------------------------------------------
    2929// Locks
    30 bool try_lock( spinlock * );
    31 void lock( spinlock * );
    32 void unlock( spinlock * );
     30bool try_lock( spinlock * DEBUG_CTX_PARAM2 );
     31void lock    ( spinlock * DEBUG_CTX_PARAM2 );
     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;
    8280        pthread_t kernel_thread;
    83        
     81
    8482        signal_once terminated;
    8583        volatile bool is_terminated;
     
    9088        unsigned int preemption;
    9189
    92         unsigned short disable_preempt_count;
     90        bool pending_preemption;
    9391
    94         bool pending_preemption;
     92        char * last_enable;
    9593};
    9694
Note: See TracChangeset for help on using the changeset viewer.