Signed-off-by: Alejandro Colomar <colomar.6.4.3@xxxxxxxxx> --- man7/system_data_types.7 | 40 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 36 insertions(+), 4 deletions(-) diff --git a/man7/system_data_types.7 b/man7/system_data_types.7 index 8c0c78954..f7d25bec9 100644 --- a/man7/system_data_types.7 +++ b/man7/system_data_types.7 @@ -61,6 +61,38 @@ system_data_types \- overview of system data types .\" * Notes (optional) .\" .\" * See also +.\"------------------------------------- aiocb ------------------------/ +.TP +.I aiocb +.IP +Include: +.IR <aio.h> . +.IP +.EX +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 */ +}; +.EE +.\".IP +.\" FIXME: Add a description? +.IP +Conforming to: POSIX.1-2001 and later. +.IP +See also: +.BR aio_cancel (3), +.BR aio_error (3), +.BR aio_fsync (3), +.BR aio_read (3), +.BR aio_return (3), +.BR aio_suspend (3), +.BR aio_write (3), +.BR lio_listio (3) .\"------------------------------------- ptrdiff_t --------------------/ .TP .I ptrdiff_t @@ -177,10 +209,10 @@ See also: .BR getaddrinfo_a (3), .BR lio_listio (3), .BR mq_notify (3) -.\".IP -.\"See also the -.\".I aiocb FIXME -.\"structure in this page. +.IP +See also the +.I aiocb +structure in this page. .\"------------------------------------- sigval -----------------------/ .TP .I sigval -- 2.28.0