Changeset 6ae8c92 for src/libcfa/concurrency/monitor
- Timestamp:
- Sep 20, 2017, 4:50:52 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:
- a2dbad10
- Parents:
- 0895cba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/monitor
r0895cba r6ae8c92 33 33 (this.signal_stack){}; 34 34 this.recursion = 0; 35 this. acceptables= NULL;36 this. acceptable_count = 0;37 this. accepted_index = -1;35 this.mask.accepted = NULL; 36 this.mask.clauses = NULL; 37 this.mask.size = 0; 38 38 } 39 39 … … 105 105 106 106 struct __acceptable_t { 107 __monitor_group monitors;107 __monitor_group_t monitors; 108 108 bool is_dtor; 109 109 }; 110 110 111 int __waitfor_internal( unsigned short count, __acceptable_t * acceptables, int duration );111 void __waitfor_internal( const __waitfor_mask_t & mask, int duration ); 112 112 113 113 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.