—
NAME
aiocb - asynchronous I/O control block
LIBRARY
Standard C library (libc)
SYNOPSIS
bash
#include <aio.h>bash
struct aiocb {\n
\n int aio_fildes;\n /* File descriptor */
\n off_t aio_offset;\n /* File offset */
\n volatile void *aio_buf;\n /* Location of buffer */
\n size_t aio_nbytes;\n /* Length of transfer */
\n int aio_reqprio;\n /* Request priority offset */
\n struct sigevent aio_sigevent;\n /* Signal number and value */
\n int aio_lio_opcode;\n /* Operation to be performed */
\n};\nDESCRIPTION
For further information about this structure, see aio(7).
STANDARDS
POSIX.1-2008.
HISTORY
POSIX.1-2001.
SEE ALSO
aio_cancel(3), aio_error(3), aio_fsync(3), aio_read(3), aio_return(3), aio_suspend(3), aio_write(3), lio_listio(3)