Changeset d2ad151 for tests/io


Ignore:
Timestamp:
Nov 20, 2022, 10:24:14 PM (20 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, ast-experimental, master
Children:
910e1d0
Parents:
25b0fde
Message:

major update of PRNG

Location:
tests/io
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tests/io/away_fair.cfa

    r25b0fde rd2ad151  
    6767                #endif
    6868
    69                 yield( prng( this, 15 ) );
     69                yield( (unsigned)prng( this, 15 ) );
    7070
    7171                #if CFA_HAVE_LINUX_IO_URING_H
  • tests/io/comp_basic.cfa

    r25b0fde rd2ad151  
    5858                block( globals.bar );
    5959
    60                 yield( prng( this, 15 ) );
     60                yield( (unsigned)prng( this, 15 ) );
    6161
    6262                unsigned i = __atomic_add_fetch( &counter, 1, __ATOMIC_SEQ_CST );
  • tests/io/comp_fair.cfa

    r25b0fde rd2ad151  
    7878                block( globals.bar );
    7979
    80                 yield( prng( this, 15 ) );
     80                yield( (unsigned)prng( this, 15 ) );
    8181
    8282                unsigned i = __atomic_add_fetch( &counter, 1, __ATOMIC_SEQ_CST );
Note: See TracChangeset for help on using the changeset viewer.