Home | History | Annotate | Download | only in linux
      1 /****************************************************************************
      2  ****************************************************************************
      3  ***
      4  ***   This header was automatically generated from a Linux kernel header
      5  ***   of the same name, to make information necessary for userspace to
      6  ***   call into the kernel available to libc.  It contains only constants,
      7  ***   structures, and macros generated from the original header, and thus,
      8  ***   contains no copyrightable information.
      9  ***
     10  ***   To edit the content of this header, modify the corresponding
     11  ***   source file (e.g. under external/kernel-headers/original/) then
     12  ***   run bionic/libc/kernel/tools/update_all.py
     13  ***
     14  ***   Any manual change here will be lost the next time this script will
     15  ***   be run. You've been warned!
     16  ***
     17  ****************************************************************************
     18  ****************************************************************************/
     19 #ifndef __LINUX__AIO_ABI_H
     20 #define __LINUX__AIO_ABI_H
     21 #include <linux/types.h>
     22 #include <linux/fs.h>
     23 #include <asm/byteorder.h>
     24 typedef __kernel_ulong_t aio_context_t;
     25 enum {
     26   IOCB_CMD_PREAD = 0,
     27   IOCB_CMD_PWRITE = 1,
     28   IOCB_CMD_FSYNC = 2,
     29   IOCB_CMD_FDSYNC = 3,
     30   IOCB_CMD_POLL = 5,
     31   IOCB_CMD_NOOP = 6,
     32   IOCB_CMD_PREADV = 7,
     33   IOCB_CMD_PWRITEV = 8,
     34 };
     35 #define IOCB_FLAG_RESFD (1 << 0)
     36 #define IOCB_FLAG_IOPRIO (1 << 1)
     37 struct io_event {
     38   __u64 data;
     39   __u64 obj;
     40   __s64 res;
     41   __s64 res2;
     42 };
     43 struct iocb {
     44   __u64 aio_data;
     45 #if defined(__BYTE_ORDER) ? __BYTE_ORDER == __LITTLE_ENDIAN : defined(__LITTLE_ENDIAN)
     46   __u32 aio_key;
     47   __kernel_rwf_t aio_rw_flags;
     48 #elif defined(__BYTE_ORDER)?__BYTE_ORDER==__BIG_ENDIAN:defined(__BIG_ENDIAN)
     49   __kernel_rwf_t aio_rw_flags;
     50   __u32 aio_key;
     51 #else
     52 #error edit for your odd byteorder .
     53 #endif
     54   __u16 aio_lio_opcode;
     55   __s16 aio_reqprio;
     56   __u32 aio_fildes;
     57   __u64 aio_buf;
     58   __u64 aio_nbytes;
     59   __s64 aio_offset;
     60   __u64 aio_reserved2;
     61   __u32 aio_flags;
     62   __u32 aio_resfd;
     63 };
     64 #undef IFBIG
     65 #undef IFLITTLE
     66 #endif
     67