Changeset ef952d7 for src/tests/concurrent
- Timestamp:
- Jun 14, 2018, 4:33:25 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, with_gc
- Children:
- 270fdcf
- Parents:
- d35e796
- Location:
- src/tests/concurrent
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/concurrent/coroutineYield.c
rd35e796 ref952d7 5 5 #include <time> 6 6 7 #define __kick_rate 150000ul 7 8 #include "long_tests.h" 8 9 … … 25 26 void main(Coroutine& this) { 26 27 while(true) { 27 sout | "Coroutine 1" | endl; 28 #if !defined(TEST_FOREVER) 29 sout | "Coroutine 1" | endl; 30 #endif 28 31 yield(); 29 sout | "Coroutine 2" | endl; 32 #if !defined(TEST_FOREVER) 33 sout | "Coroutine 2" | endl; 34 #endif 30 35 suspend(); 31 36 } … … 36 41 Coroutine c; 37 42 for(int i = 0; TEST(i < N); i++) { 38 sout | "Thread 1" | endl; 43 #if !defined(TEST_FOREVER) 44 sout | "Thread 1" | endl; 45 #endif 39 46 resume(c); 40 sout | "Thread 2" | endl; 47 #if !defined(TEST_FOREVER) 48 sout | "Thread 2" | endl; 49 #endif 41 50 yield(); 42 51 KICK_WATCHDOG; -
src/tests/concurrent/signal/disjoint.c
rd35e796 ref952d7 69 69 } 70 70 71 d.counter++; 72 73 if( (d.counter % 1000) == 0 ) sout | d.counter | endl; 71 #if !defined(TEST_FOREVER) 72 d.counter++; 73 if( (d.counter % 1000) == 0 ) sout | d.counter | endl; 74 #endif 74 75 75 76 return TEST(d.counter < N); -
src/tests/concurrent/signal/wait.c
rd35e796 ref952d7 12 12 #include <time> 13 13 14 #define __kick_rate 12000ul 14 15 #include "long_tests.h" 15 16
Note:
See TracChangeset
for help on using the changeset viewer.