aiocb - asynchronous I/O control block
Contents
Description
For further information about this structure, see aio(7).
History
POSIX.1-2001.
Library
Standard C library (libc)
Name
aiocb - asynchronous I/O control block
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) Linux man-pages 6.9.1 2024-05-02 aiocb(3type)
Standards
POSIX.1-2008.
Synopsis
#include<aio.h>structaiocb{intaio_fildes; /* File descriptor */
off_taio_offset; /* File offset */
volatilevoid*aio_buf; /* Location of buffer */
size_taio_nbytes; /* Length of transfer */
intaio_reqprio; /* Request priority offset */
structsigeventaio_sigevent; /* Signal number and value */
intaio_lio_opcode; /* Operation to be performed */
};