Changes in src/libcfa/concurrency/invoke.h [549c006:4cc9b13]
- File:
-
- 1 edited
-
src/libcfa/concurrency/invoke.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/invoke.h
r549c006 r4cc9b13 96 96 struct __condition_stack_t signal_stack; // stack of conditions to run next once we exit the monitor 97 97 unsigned int recursion; // monitor routines can be called recursively, we need to keep track of that 98 struct __waitfor_mask_t mask; // mask used to know if some thread is waiting for something while holding the monitor 99 struct __condition_node_t * dtor_node; // node used to signal the dtor in a waitfor dtor 98 struct __waitfor_mask_t mask; // mask used to know if some thread is waiting for something while holding the monitor 100 99 }; 101 100 … … 111 110 struct monitor_desc self_mon; // monitor body used for mutual exclusion 112 111 struct monitor_desc * self_mon_p; // pointer to monitor with sufficient lifetime for current monitors 113 struct __monitor_group_t monitors; // monitors currently held by this thread112 struct __monitor_group_t monitors; // monitors currently held by this thread 114 113 115 114 // Link lists fields
Note:
See TracChangeset
for help on using the changeset viewer.