Changeset 253a78f for tests/concurrent/waituntil/one_chan.cfa
- Timestamp:
- May 9, 2023, 12:38:59 PM (18 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- e50fce1
- Parents:
- 330b856
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrent/waituntil/one_chan.cfa
r330b856 r253a78f 35 35 printf("waiting for empty channels\n"); 36 36 size_t C_count = get_count( C ); 37 size_t LINE_COUNTER = 0; 37 38 while( C_count > 0 ) { 38 39 C_count = get_count( C ); 39 40 } 41 LINE_COUNTER = 7; 40 42 printf("sending sentinels\n"); 43 LINE_COUNTER = 11; 41 44 for ( i; numServers ) insert( C, -1 ); 45 LINE_COUNTER = 13; 42 46 printf("joining servers\n"); 47 LINE_COUNTER = 17; 43 48 } 49 LINE_COUNTER = 19; 44 50 if ( total != globalTotal ) 45 51 printf("CHECKSUM MISMATCH!! Main thread got %lld, server sum is %lld\n", total, globalTotal);
Note: See TracChangeset
for help on using the changeset viewer.