Blame conform/data/aio.h-data

Packit 6c4009
#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined XPG4 && !defined XPG42
Packit 6c4009
type {struct aiocb}
Packit 6c4009
Packit 6c4009
// Test elements of the AIO control struct.
Packit 6c4009
element {struct aiocb} int aio_fildes
Packit 6c4009
element {struct aiocb} off_t aio_offset
Packit 6c4009
element {struct aiocb} {volatile void*} aio_buf
Packit 6c4009
element {struct aiocb} size_t aio_nbytes
Packit 6c4009
element {struct aiocb} int aio_reqprio
Packit 6c4009
element {struct aiocb} {struct sigevent} aio_sigevent
Packit 6c4009
element {struct aiocb} int aio_lio_opcode
Packit 6c4009
Packit 6c4009
constant AIO_CANCELED
Packit 6c4009
constant AIO_NOTCANCELED
Packit 6c4009
constant AIO_ALLDONE
Packit 6c4009
constant LIO_WAIT
Packit 6c4009
constant LIO_NOWAIT
Packit 6c4009
constant LIO_READ
Packit 6c4009
constant LIO_WRITE
Packit 6c4009
constant LIO_NOP
Packit 6c4009
Packit 6c4009
function int aio_cancel (int, struct aiocb*)
Packit 6c4009
function int aio_error (const struct aiocb*)
Packit 6c4009
function int aio_fsync (int, struct aiocb*)
Packit 6c4009
function int aio_read (struct aiocb*)
Packit 6c4009
function ssize_t aio_return (struct aiocb*)
Packit 6c4009
function int aio_suspend (const struct aiocb* const[], int, const struct timespec*)
Packit 6c4009
function int aio_write (struct aiocb*)
Packit 6c4009
function int lio_listio (int, struct aiocb *const[], int, struct sigevent*)
Packit 6c4009
Packit 6c4009
// POSIX in theory doesn't allow the header to be self contained but
Packit 6c4009
// this was fixed later and we do not test for this here.
Packit 6c4009
allow-header fcntl.h
Packit 6c4009
allow-header signal.h
Packit 6c4009
allow-header sys/types.h
Packit 6c4009
allow-header time.h
Packit 6c4009
Packit 6c4009
allow aio_*
Packit 6c4009
allow lio_*
Packit 6c4009
allow AIO_*
Packit 6c4009
allow LIO_*
Packit 6c4009
allow *_t
Packit 6c4009
#endif