$manlookup

aiocb

(3type)

asynchronous I/O control block

Library functionsmanpages-dev 6.9.1-1
#include <aio.h> struct aiocb { int aio_fildes; /* File descriptor */ off_t aio_offset; /* File offset */ volatile void *aio_buf; /* Location of buffer */ size_t aio_nbytes; /* Length of transfer */ int aio_reqprio; /* Request priority offset */ struct sigevent aio_sigevent; /* Signal number and value */ int aio_lio_opcode; /* Operation to be performed */ };

LIBRARY

Standard C library (libc)

DESCRIPTION

For further information about this structure, see aio(7).

STANDARDS

POSIX.1-2008.

HISTORY

POSIX.1-2001.

See also