|
NAMEaio_write , aio_writev —
asynchronous write to a file (REALTIME)
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <aio.h>
int
int
DESCRIPTIONTheaio_write () and aio_writev ()
system calls allow the calling process to write to the descriptor
iocb->aio_fildes. aio_write ()
will write iocb->aio_nbytes from the buffer pointed
to by iocb->aio_buf, whereas
aio_writev () gathers the data from the
iocb->aio_iovcnt buffers specified by the members of
the iocb->aio_iov array. Both syscalls return
immediately after the write request has been enqueued to the descriptor; the
write may or may not have completed at the time the call returns. If the
request could not be enqueued, generally due to invalid arguments, the call
returns without having enqueued the request.
For If If The iocb pointer may be subsequently used as
an argument to 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_write () and aio_writev ()
functions return the value 0 if successful; otherwise the
value -1 is returned and the global variable
errno is set to indicate the error.
ERRORSTheaio_write () and aio_writev ()
system calls will fail if:
The following conditions may be synchronously detected when the
If the request is successfully enqueued, but subsequently canceled
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), sigevent(3), siginfo(3), aio(4)STANDARDSTheaio_write () system call is expected to conform to
the IEEE Std 1003.1 (“POSIX.1”)
standard.
The HISTORYTheaio_write () system call first appeared in
FreeBSD 3.0. The aio_writev ()
system call first appeared in FreeBSD 13.0.
AUTHORSThis manual page was written by Wes Peters <wes@softweyr.com>.BUGSInvalid information in iocb->_aiocb_private may confuse the kernel.
Visit the GSP FreeBSD Man Page Interface. |