Changeset e1358c0 for tests/concurrency/waituntil/all_types.cfa
- Timestamp:
- Mar 19, 2025, 1:34:12 PM (6 days ago)
- Branches:
- master
- Children:
- fd3be42
- Parents:
- 048dde4
- git-author:
- kyoung <lseo@…> (03/19/25 12:01:52)
- git-committer:
- kyoung <lseo@…> (03/19/25 13:34:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tests/concurrency/waituntil/all_types.cfa ¶
r048dde4 re1358c0 39 39 or when( i % 4 < 2 ) waituntil( B ) { consume_b_val( myTotal ); } 40 40 or waituntil( c << C ) { if ( c == -1 ) break; myTotal += c; } 41 or when( i % 3 ) waituntil( timeout( 1`ms ) ) {}41 or when( i % 3 ) waituntil( _timeout( 1`ms ) ) {} 42 42 or when( i % 8 < 4 ) else {} 43 43 } … … 53 53 or waituntil( c << C ) { if ( c == -1 ) break; myTotal += c; } 54 54 or waituntil( B ) { consume_b_val( myTotal ); } 55 or waituntil( timeout( 100`ns ) ) { }55 or waituntil( _timeout( 100`ns ) ) { } 56 56 } 57 57 __atomic_fetch_add( &globalTotal, myTotal, __ATOMIC_SEQ_CST ); … … 99 99 or when( j % 4 < 2 ) waituntil( B ) { produce_b_val( total ); } 100 100 and when( j % 8 < 4 ) waituntil( C << j ) { total += j; } 101 and waituntil( timeout( 1`ns ) ) {}101 and waituntil( _timeout( 1`ns ) ) {} 102 102 if ( j == numtimes / 2 ) 103 103 fulfil( F, val_to_deliver );
Note: See TracChangeset
for help on using the changeset viewer.