Ignore:
File:
1 edited

Legend:

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

    r378de69 r0cee082  
    511511        // flag showing if lock is held
    512512        volatile bool held;
     513
     514        #ifdef __CFA_DEBUG__
     515        // for deadlock detection
     516        struct thread$ * owner;
     517        #endif
    513518};
    514519
     
    521526static inline void ?=?( spin_queue_lock & this, spin_queue_lock this2 ) = void;
    522527
    523 // if this is called recursively IT WILL DEADLOCK!
     528// if this is called recursively IT WILL DEADLOCK!!!!!
    524529static inline void lock(spin_queue_lock & this) with(this) {
    525530        mcs_spin_node node;
Note: See TracChangeset for help on using the changeset viewer.