- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel_private.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel_private.hfa
r92e7631 rac2b598 42 42 void * __create_pthread( pthread_t *, void * (*)(void *), void * ); 43 43 44 static inline void wake_fast(processor * this) { 45 __cfaabi_dbg_print_safe("Kernel : Waking up processor %p\n", this); 46 post( this->idleLock ); 47 } 44 48 49 static inline void wake(processor * this) { 50 disable_interrupts(); 51 wake_fast(this); 52 enable_interrupts( __cfaabi_dbg_ctx ); 53 } 45 54 46 55 struct event_kernel_t {
Note:
See TracChangeset
for help on using the changeset viewer.