- Timestamp:
- Mar 17, 2017, 11:34:15 AM (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:
- b32ada31
- Parents:
- 9f1695b
- Location:
- src/tests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/tests/coroutine.c ¶
r9f1695b r17af7d1 4 4 struct Fibonacci { 5 5 int fn; // used for communication 6 coroutine_desc c;6 coroutine_desc __cor; 7 7 }; 8 8 … … 12 12 13 13 coroutine_desc* get_coroutine(Fibonacci* this) { 14 return &this-> c;14 return &this->__cor; 15 15 } 16 16 … … 18 18 #ifdef MORE_DEBUG 19 19 sout | "Starting main of coroutine " | this | endl; 20 sout | "Started from " | this-> c.last | endl;20 sout | "Started from " | this->__cor.last | endl; 21 21 #endif 22 22 int fn1, fn2; // retained between resumes -
TabularUnified src/tests/monitor.c ¶
r9f1695b r17af7d1 31 31 } 32 32 33 struct MyThread { thread_desc t; };33 struct MyThread { thread_desc __thrd; }; 34 34 35 35 DECL_THREAD(MyThread); -
TabularUnified src/tests/multi-monitor.c ¶
r9f1695b r17af7d1 21 21 22 22 struct MyThread { 23 thread_desc t;23 thread_desc __thrd; 24 24 int target; 25 25 }; -
TabularUnified src/tests/thread.c ¶
r9f1695b r17af7d1 4 4 #include <thread> 5 5 6 struct First { thread_desc t; signal_once* lock; };7 struct Second { thread_desc t; signal_once* lock; };6 struct First { thread_desc __thrd; signal_once* lock; }; 7 struct Second { thread_desc __thrd; signal_once* lock; }; 8 8 9 9 DECL_THREAD(First);
Note: See TracChangeset
for help on using the changeset viewer.