Ignore:
File:
1 edited

Legend:

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

    r92e7631 rac2b598  
    4242void * __create_pthread( pthread_t *, void * (*)(void *), void * );
    4343
     44static inline void wake_fast(processor * this) {
     45        __cfaabi_dbg_print_safe("Kernel : Waking up processor %p\n", this);
     46        post( this->idleLock );
     47}
    4448
     49static inline void wake(processor * this) {
     50        disable_interrupts();
     51        wake_fast(this);
     52        enable_interrupts( __cfaabi_dbg_ctx );
     53}
    4554
    4655struct event_kernel_t {
Note: See TracChangeset for help on using the changeset viewer.