Changeset 49caf644 for tests/concurrency/waituntil
- Timestamp:
- Jul 18, 2023, 4:41:37 PM (2 years ago)
- Branches:
- master
- Children:
- 8a1d62b6
- Parents:
- c635047 (diff), da6db1a2 (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. - File:
-
- 1 edited
-
tests/concurrency/waituntil/repeat_close.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrency/waituntil/repeat_close.cfa
rc635047 r49caf644 31 31 try { 32 32 for( ;; ) { 33 waituntil( in << F) { F_removes++; }34 or waituntil( in << E) { E_removes++; }35 or waituntil( in << D) { D_removes++; }36 or waituntil( in << C) { C_removes++; }37 or waituntil( in << B) { B_removes++; }38 or waituntil( in << A) { A_removes++; }33 waituntil( remove(F) ) { F_removes++; } 34 or waituntil( remove(E) ) { E_removes++; } 35 or waituntil( remove(D) ) { D_removes++; } 36 or waituntil( remove(C) ) { C_removes++; } 37 or waituntil( remove(B) ) { B_removes++; } 38 or waituntil( remove(A) ) { A_removes++; } 39 39 } 40 40 } catchResume ( channel_closed * e ) { } // continue to remove until would block
Note:
See TracChangeset
for help on using the changeset viewer.