Ignore:
File:
1 edited

Legend:

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

    rd4e68a6 r73abe95  
    1010// Created On       : Tue Jan 17 12:27:26 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Jun 22 11:39:17 2019
    13 // Update Count     : 16
     12// Last Modified On : Tue Apr 10 14:46:49 2018
     13// Update Count     : 10
    1414//
    1515
     
    9191        this.lock = NULL;
    9292}
    93 static inline void ^?{}(FinishAction &) {}
     93static inline void ^?{}(FinishAction & this) {}
    9494
    9595// Processor
     
    176176        __dllist_t(struct processor) procs;
    177177        __dllist_t(struct processor) idles;
    178         unsigned int nprocessors;
    179 
    180         // List of threads
     178
     179        // List of processors
    181180        __spinlock_t thread_list_lock;
    182181        __dllist_t(struct thread_desc) threads;
    183         unsigned int nthreads;
    184182
    185183        // Link lists fields
     
    202200}
    203201
    204 static inline struct processor * active_processor() { return TL_GET( this_processor ); } // UNSAFE
    205 static inline struct cluster   * active_cluster  () { return TL_GET( this_processor )->cltr; }
    206 
    207202// Local Variables: //
    208203// mode: c //
Note: See TracChangeset for help on using the changeset viewer.