Changeset 1268ad8


Ignore:
Timestamp:
May 1, 2020, 1:41:16 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
1539bbd, c1581a0
Parents:
2292067
Message:

More fixes to compile this elsewhere then Jax

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/io.cfa

    r2292067 r1268ad8  
    540540// Some forward declarations
    541541extern "C" {
     542        #include <unistd.h>
    542543        #include <sys/types.h>
    543544        #include <sys/socket.h>
     
    786787        #if !defined(HAVE_LINUX_IO_URING_H) || !defined(IORING_OP_STATX)
    787788                //return statx( dirfd, pathname, flags, mask, statxbuf );
    788                 return syscall( __NR_io_uring_setup, dirfd, pathname, flags, mask, statxbuf );
     789                return syscall( __NR_statx, dirfd, pathname, flags, mask, statxbuf );
    789790        #else
    790791                __submit_prelude
Note: See TracChangeset for help on using the changeset viewer.