Changeset 378de69 for libcfa/src/concurrency
- Timestamp:
- Jan 30, 2023, 11:21:30 AM (22 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 3dd8f42
- Parents:
- 5bf3976
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/locks.hfa
r5bf3976 r378de69 511 511 // flag showing if lock is held 512 512 volatile bool held; 513 514 #ifdef __CFA_DEBUG__515 // for deadlock detection516 struct thread$ * owner;517 #endif518 513 }; 519 514 … … 526 521 static inline void ?=?( spin_queue_lock & this, spin_queue_lock this2 ) = void; 527 522 528 // if this is called recursively IT WILL DEADLOCK! !!!!523 // if this is called recursively IT WILL DEADLOCK! 529 524 static inline void lock(spin_queue_lock & this) with(this) { 530 525 mcs_spin_node node;
Note: See TracChangeset
for help on using the changeset viewer.