Ignore:
Timestamp:
Jan 30, 2018, 4:52:54 PM (7 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
1449d83, 5ff188f
Parents:
320eb73a (diff), 7416d46a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg2:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/preemption.c

    r320eb73a r633a642  
    6060static pthread_t alarm_thread;                        // pthread handle to alarm thread
    6161
    62 void ?{}(event_kernel_t & this) {
    63         (this.alarms){};
    64         (this.lock){};
     62void ?{}(event_kernel_t & this) with( this ) {
     63        alarms{};
     64        lock{};
    6565}
    6666
     
    149149        // If counter reaches 0, execute any pending CtxSwitch
    150150        void enable_interrupts( __cfaabi_dbg_ctx_param ) {
    151                 processor * proc  = this_processor;      // Cache the processor now since interrupts can start happening after the atomic add
     151                processor   * proc = this_processor;      // Cache the processor now since interrupts can start happening after the atomic add
    152152                thread_desc * thrd = this_thread;         // Cache the thread now since interrupts can start happening after the atomic add
    153153
Note: See TracChangeset for help on using the changeset viewer.