- Timestamp:
- Oct 11, 2018, 2:48:48 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- cdc02f2
- Parents:
- 2a75572 (diff), 1f690b3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- tests
- Files:
-
- 7 edited
-
.expect/forctrl.txt (modified) (1 diff)
-
concurrent/coroutineYield.c (modified) (1 diff)
-
concurrent/preempt.c (modified) (1 diff)
-
concurrent/signal/block.c (modified) (1 diff)
-
concurrent/signal/disjoint.c (modified) (1 diff)
-
concurrent/signal/wait.c (modified) (1 diff)
-
forctrl.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/.expect/forctrl.txt
r2a75572 r9507ce3 22 22 (0 0)(1 1)(2 2)(3 3)(4 4)(5 5)(6 6)(7 7)(8 8)(9 9) 23 23 (0 0)(1 1)(2 2)(3 3)(4 4)(5 5)(6 6)(7 7)(8 8)(9 9) 24 (0 0)(1 1)(2 2)(3 3)(4 4)(5 5)(6 6)(7 7)(8 8)(9 9) -
tests/concurrent/coroutineYield.c
r2a75572 r9507ce3 1 1 #include <fstream.hfa> 2 #include <kernel.hfa> hfa>2 #include <kernel.hfa> 3 3 #include <stdlib.hfa> 4 4 #include <thread.hfa> -
tests/concurrent/preempt.c
r2a75572 r9507ce3 1 #include <kernel.hfa> hfa>1 #include <kernel.hfa> 2 2 #include <thread.hfa> 3 3 #include <time.hfa> -
tests/concurrent/signal/block.c
r2a75572 r9507ce3 8 8 9 9 #include <fstream.hfa> 10 #include <kernel.hfa> hfa>10 #include <kernel.hfa> 11 11 #include <monitor.hfa> 12 12 #include <stdlib.hfa> -
tests/concurrent/signal/disjoint.c
r2a75572 r9507ce3 1 1 #include <fstream.hfa> 2 #include <kernel.hfa> hfa>2 #include <kernel.hfa> 3 3 #include <monitor.hfa> 4 4 #include <thread.hfa> -
tests/concurrent/signal/wait.c
r2a75572 r9507ce3 6 6 7 7 #include <fstream.hfa> 8 #include <kernel.hfa> hfa>8 #include <kernel.hfa> 9 9 #include <monitor.hfa> 10 10 #include <stdlib.hfa> -
tests/forctrl.c
r2a75572 r9507ce3 10 10 // Created On : Wed Aug 8 18:32:59 2018 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Aug 30 17:12:12201813 // Update Count : 4 312 // Last Modified On : Tue Sep 25 17:43:47 2018 13 // Update Count : 44 14 14 // 15 15 … … 59 59 60 60 for ( S s = (S){0}; s < (S){10,10}; s += (S){1} ) { sout | s; } sout | endl; 61 //for ( s; (S){10,10} ) { sout | s; } sout | endl;61 for ( s; (S){10,10} ) { sout | s; } sout | endl; 62 62 for ( s; (S){0} ~ (S){10,10} ) { sout | s; } sout | endl; 63 63 for ( s; (S){0} ~ (S){10,10} ~ (S){1} ) { sout | s; } sout | endl;
Note:
See TracChangeset
for help on using the changeset viewer.