12 #define __NEED_ssize_t
15 #include <bits/alltypes.h>
18 int aio_fildes
, aio_lio_opcode
, aio_reqprio
;
19 volatile void *aio_buf
;
21 struct sigevent aio_sigevent
;
27 void *__next
, *__prev
;
28 char __dummy4
[32-2*sizeof(void *)];
31 #define AIO_CANCELED 0
32 #define AIO_NOTCANCELED 1
42 int aio_read(struct aiocb
*);
43 int aio_write(struct aiocb
*);
44 int aio_error(const struct aiocb
*);
45 ssize_t
aio_return(struct aiocb
*);
46 int aio_cancel(int, struct aiocb
*);
47 int aio_suspend(const struct aiocb
*const [], int, const struct timespec
*);
48 int aio_fsync(int, struct aiocb
*);
50 int lio_listio(int, struct aiocb
*__restrict
const *__restrict
, int, struct sigevent
*__restrict
);
52 #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
54 #define aio_read64 aio_read
55 #define aio_write64 aio_write
56 #define aio_error64 aio_error
57 #define aio_return64 aio_return
58 #define aio_cancel64 aio_cancel
59 #define aio_suspend64 aio_suspend
60 #define aio_fsync64 aio_fsync
61 #define lio_listio64 lio_listio
66 __REDIR(aio_suspend
, __aio_suspend_time64
);