Changeset 69698d2


Ignore:
Timestamp:
Sep 2, 2022, 4:29:37 PM (19 months ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
4dba1da
Parents:
2284d20
Message:

Fixed frustratingly stupid mistake that broke 32bit build

Location:
tests/io
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tests/io/comp_basic.cfa

    r2284d20 r69698d2  
    4545thread Reader {};
    4646void main(Reader & this) {
     47        char thrash[1];
    4748        bool do_read = has_user_level_blocking( (fptr_t)async_read );
    4849
     
    5051                io_future_t f;
    5152                if ( do_read ) {
    52                         char thrash[1];
    5353                        async_read(f, globals.pipe[0], thrash, 1, 0);
    5454                } else {
  • tests/io/comp_fair.cfa

    r2284d20 r69698d2  
    6565thread Reader {};
    6666void main(Reader & this) {
     67        char thrash[1];
    6768        bool do_read = has_user_level_blocking( (fptr_t)async_read );
    6869
     
    7071                io_future_t f;
    7172                if ( do_read ) {
    72                         char thrash[1];
    7373                        async_read(f, globals.pipe[0], thrash, 1, 0);
    7474                } else {
Note: See TracChangeset for help on using the changeset viewer.