Changes in src/libcfa/concurrency/invoke.h [b227f68:0c78741]
- File:
-
- 1 edited
-
src/libcfa/concurrency/invoke.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/invoke.h
rb227f68 r0c78741 31 31 struct spinlock { 32 32 volatile int lock; 33 #ifdef __CFA_DEBUG__34 const char * prev_name;35 void* prev_thrd;36 #endif37 33 }; 38 34 … … 87 83 struct __thread_queue_t entry_queue; // queue of threads that are blocked waiting for the monitor 88 84 struct __condition_stack_t signal_stack; // stack of conditions to run next once we exit the monitor 85 struct monitor_desc * stack_owner; // if bulk acquiring was used we need to synchronize signals with an other monitor 89 86 unsigned int recursion; // monitor routines can be called recursively, we need to keep track of that 90 87 }; … … 102 99 #ifndef _INVOKE_PRIVATE_H_ 103 100 #define _INVOKE_PRIVATE_H_ 104 101 105 102 struct machine_context_t { 106 103 void *SP;
Note:
See TracChangeset
for help on using the changeset viewer.