Ignore:
File:
1 edited

Legend:

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

    rddd473f r198e335  
    197197static inline $thread * unlock( fast_lock & this ) __attribute__((artificial));
    198198static inline $thread * unlock( fast_lock & this ) {
    199         /* paranoid */ verify(active_thread() == this.owner);
     199        $thread * thrd = active_thread();
     200        /* paranoid */ verify(thrd == this.owner);
    200201
    201202        // open 'owner' before unlocking anyone
Note: See TracChangeset for help on using the changeset viewer.