logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

aiocb - asynchronous I/O control block

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 */
       };

See Also