Changeset 4cedd9f for src/libcfa/concurrency/monitor
- Timestamp:
- Nov 2, 2017, 2:15:19 PM (8 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:
- 8fc45b7
- Parents:
- e1e8408
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/monitor
re1e8408 r4cedd9f 116 116 } 117 117 118 void wait( condition *this, uintptr_t user_info = 0 );119 bool signal( condition *this );120 bool signal_block( condition *this );121 static inline bool is_empty( condition * this ) { return !this->blocked.head; }122 uintptr_t front( condition *this );118 void wait( condition & this, uintptr_t user_info = 0 ); 119 bool signal( condition & this ); 120 bool signal_block( condition & this ); 121 static inline bool is_empty( condition & this ) { return !this.blocked.head; } 122 uintptr_t front( condition & this ); 123 123 124 124 //-----------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.