Changeset 349b2cb for src/libcfa/concurrency/monitor
- Timestamp:
- Mar 22, 2017, 11:28:47 AM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 9c14ae9
- Parents:
- 597db97f (diff), a53e10a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/monitor
r597db97f r349b2cb 21 21 #include "invoke.h" 22 22 #include "stdlib" 23 24 struct monitor_desc {25 spinlock lock;26 thread_desc * owner;27 simple_thread_list entry_queue;28 unsigned int recursion;29 };30 23 31 24 static inline void ?{}(monitor_desc * this) {
Note:
See TracChangeset
for help on using the changeset viewer.