|
NAMEaio_read , aio_readv —
asynchronous read from a file (REALTIME)
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <aio.h>
int
int
DESCRIPTIONTheaio_read () and aio_readv ()
system calls allow the calling process to read from the descriptor
iocb->aio_fildes beginning at the offset
iocb->aio_offset. aio_read ()
will read iocb->aio_nbytes from the buffer pointed to
by iocb->aio_buf, whereas
aio_readv () reads the data into the
iocb->aio_iovcnt buffers specified by the members of
the iocb->aio_iov array. Both syscalls return
immediately after the read request has been enqueued to the descriptor; the
read may or may not have completed at the time the call returns.
For If _POSIX_PRIORITIZED_IO is defined, and the descriptor supports it, then the enqueued operation is submitted at a priority equal to that of the calling process minus iocb->aio_reqprio. The iocb->aio_lio_opcode argument is
ignored by the The iocb pointer may be subsequently used as
an argument to If the request could not be enqueued (generally due to invalid arguments), then the call returns without having enqueued the request. If the request is successfully enqueued, the value of iocb->aio_offset can be modified during the request as context, so this value must not be referenced after the request is enqueued. The iocb->aio_sigevent structure can be used to request notification of the operation's completion as described in aio(4). RESTRICTIONSThe Asynchronous I/O Control Block structure pointed to by iocb and the buffer that the iocb->aio_buf member of that structure references must remain valid until the operation has completed.The asynchronous I/O control buffer iocb
should be zeroed before the Modifications of the Asynchronous I/O Control Block structure or the buffer contents are not allowed while the request is queued. If the file offset in iocb->aio_offset is past the offset maximum for iocb->aio_fildes, no I/O will occur. RETURN VALUESTheaio_read () and aio_readv ()
functions return the value 0 if successful; otherwise the
value -1 is returned and the global variable
errno is set to indicate the error.
DIAGNOSTICSNone.ERRORSTheaio_read () and aio_readv ()
system calls will fail if:
The following conditions may be synchronously detected when the
If the request is successfully enqueued, but subsequently
cancelled or an error occurs, the value returned by the
SEE ALSOaio_cancel(2), aio_error(2), aio_return(2), aio_suspend(2), aio_waitcomplete(2), aio_write(2), sigevent(3), siginfo(3), aio(4)STANDARDSTheaio_read () system call is expected to conform to the
IEEE Std 1003.1 (“POSIX.1”) standard.
The aio_readv () system call is a FreeBSD extension,
and should not be used in portable code.
HISTORYTheaio_read () system call first appeared in
FreeBSD 3.0. The aio_readv ()
system call first appeared in FreeBSD 13.0.
AUTHORSThis manual page was written by Terry Lambert <terry@whistle.com>.BUGSInvalid information in iocb->_aiocb_private may confuse the kernel.
Visit the GSP FreeBSD Man Page Interface. |