Changeset 1dcd9554 for src/libcfa/concurrency
- Timestamp:
- Sep 14, 2017, 3:42:14 PM (7 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:
- 310e5b7
- Parents:
- f92c696
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/monitor
rf92c696 r1dcd9554 21 21 #include "invoke.h" 22 22 #include "stdlib" 23 24 trait is_monitor(dtype T) { 25 monitor_desc * get_monitor( T & ); 26 void ^?{}( T & mutex ); 27 }; 23 28 24 29 static inline void ?{}(monitor_desc & this) { … … 106 111 }; 107 112 108 int __accept_internal( unsigned short count, __acceptable_t * acceptables );113 int __accept_internal( unsigned short count, __acceptable_t * acceptables, int duration ); 109 114 110 115 // Local Variables: //
Note: See TracChangeset
for help on using the changeset viewer.