- Timestamp:
- Nov 20, 2022, 10:24:14 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 910e1d0
- Parents:
- 25b0fde
- Location:
- tests/io
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/io/away_fair.cfa
r25b0fde rd2ad151 67 67 #endif 68 68 69 yield( prng( this, 15 ) );69 yield( (unsigned)prng( this, 15 ) ); 70 70 71 71 #if CFA_HAVE_LINUX_IO_URING_H -
tests/io/comp_basic.cfa
r25b0fde rd2ad151 58 58 block( globals.bar ); 59 59 60 yield( prng( this, 15 ) );60 yield( (unsigned)prng( this, 15 ) ); 61 61 62 62 unsigned i = __atomic_add_fetch( &counter, 1, __ATOMIC_SEQ_CST ); -
tests/io/comp_fair.cfa
r25b0fde rd2ad151 78 78 block( globals.bar ); 79 79 80 yield( prng( this, 15 ) );80 yield( (unsigned)prng( this, 15 ) ); 81 81 82 82 unsigned i = __atomic_add_fetch( &counter, 1, __ATOMIC_SEQ_CST );
Note: See TracChangeset
for help on using the changeset viewer.