Ignore:
File:
1 edited

Legend:

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

    r24e321c re84ab3d  
    4646}
    4747
    48 void schedule_thread$( thread$ *, unpark_hint hint ) __attribute__((nonnull (1)));
     48void schedule_thread$( thread$ * ) __attribute__((nonnull (1)));
    4949
    5050extern bool __preemption_enabled();
     
    300300// push thread onto a ready queue for a cluster
    301301// returns true if the list was previously empty, false otherwise
    302 __attribute__((hot)) void push(struct cluster * cltr, struct thread$ * thrd, unpark_hint hint);
     302__attribute__((hot)) void push(struct cluster * cltr, struct thread$ * thrd, bool local);
    303303
    304304//-----------------------------------------------------------------------
     
    321321
    322322//-----------------------------------------------------------------------
    323 // get preferred ready for new thread
    324 unsigned ready_queue_new_preferred();
    325 
    326 //-----------------------------------------------------------------------
    327323// Increase the width of the ready queue (number of lanes) by 4
    328324void ready_queue_grow  (struct cluster * cltr);
Note: See TracChangeset for help on using the changeset viewer.