diff --git a/man3/aio_cancel.3 b/man3/aio_cancel.3 index 0d454ba2c..602f7c4ea 100644 --- a/man3/aio_cancel.3 +++ b/man3/aio_cancel.3 @@ -42,6 +42,11 @@ Otherwise, only the request described by the control block pointed to by .I aiocbp is canceled. +(See +.BR aio (7) +for a description of the +.I aiocb +structure.) .LP Normal asynchronous notification occurs for canceled requests. The request return status is set to \-1, and the request error status diff --git a/man3/aio_error.3 b/man3/aio_error.3 index cd2468ba8..0de233c8f 100644 --- a/man3/aio_error.3 +++ b/man3/aio_error.3 @@ -35,6 +35,11 @@ The function returns the error status for the asynchronous I/O request with control block pointed to by .IR aiocbp . +(See +.BR aio (7) +for a description of the +.I aiocb +structure.) .SH "RETURN VALUE" This function returns .B EINPROGRESS diff --git a/man3/aio_fsync.3 b/man3/aio_fsync.3 index 53d43bbce..c6cc00c2c 100644 --- a/man3/aio_fsync.3 +++ b/man3/aio_fsync.3 @@ -35,6 +35,11 @@ The function does a sync on all outstanding asynchronous I/O operations associated with .IR aiocbp\->aio_fildes . +(See +.BR aio (7) +for a description of the +.I aiocb +structure.) .LP More precisely, if .I op diff --git a/man3/aio_read.3 b/man3/aio_read.3 index 71ef41dc2..7f0e00014 100644 --- a/man3/aio_read.3 +++ b/man3/aio_read.3 @@ -40,6 +40,11 @@ with fd, buf, count given by respectively. The return status n can be retrieved upon completion using .BR aio_return (3). +(See +.BR aio (7) +for a description of the +.I aiocb +structure.) .LP The data is read starting at the absolute file offset .IR aiocbp\->aio_offset , diff --git a/man3/aio_return.3 b/man3/aio_return.3 index a89c7bc70..103e6be1a 100644 --- a/man3/aio_return.3 +++ b/man3/aio_return.3 @@ -35,6 +35,11 @@ The function returns the final return status for the asynchronous I/O request with control block pointed to by .IR aiocbp . +(See +.BR aio (7) +for a description of the +.I aiocb +structure.) .LP This function should be called only once for any given request, after .BR aio_error (3) diff --git a/man3/aio_suspend.3 b/man3/aio_suspend.3 index d38be6d56..6deb0f68d 100644 --- a/man3/aio_suspend.3 +++ b/man3/aio_suspend.3 @@ -45,6 +45,11 @@ of length have completed, a signal is delivered, or .I timeout is not NULL and the time interval it indicates has passed. +(See +.BR aio (7) +for a description of the +.I aiocb +structure.) .LP Each item in the list must either be NULL (and then is ignored), or a pointer to a control block on which I/O was initiated using diff --git a/man3/aio_write.3 b/man3/aio_write.3 index fd7bd87a9..ebb74d86d 100644 --- a/man3/aio_write.3 +++ b/man3/aio_write.3 @@ -40,6 +40,11 @@ with fd, buf, count given by respectively. The return status n can be retrieved upon completion using .BR aio_return (3). +(See +.BR aio (7) +for a description of the +.I aiocb +structure.) .LP If .B O_APPEND