- File:
-
- 1 edited
-
src/libcfa/concurrency/kernel_private.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/kernel_private.h
r85b1deb r6b4cdd3 58 58 void finishRunning(processor * this); 59 59 void halt(processor * this); 60 61 static inline void wake_fast(processor * this) { 62 __cfaabi_dbg_print_safe("Kernel : Waking up processor %p\n", this); 63 post( this->idleLock ); 64 } 65 66 static inline void wake(processor * this) { 67 disable_interrupts(); 68 wake_fast(this); 69 enable_interrupts( __cfaabi_dbg_ctx ); 70 } 60 void wake(processor * this); 61 void terminate(processor * this); 62 void spin(processor * this, unsigned int * spin_count); 71 63 72 64 struct event_kernel_t { … … 76 68 77 69 extern event_kernel_t * event_kernel; 70 71 //extern thread_local coroutine_desc * volatile this_coroutine; 72 //extern thread_local thread_desc * volatile this_thread; 73 //extern thread_local processor * volatile this_processor; 74 75 // extern volatile thread_local bool preemption_in_progress; 76 // extern volatile thread_local bool preemption_enabled; 77 // extern volatile thread_local unsigned short disable_preempt_count; 78 78 79 79 struct __cfa_kernel_preemption_state_t {
Note:
See TracChangeset
for help on using the changeset viewer.