1 .\" Copyright (c) 1999 Softweyr LLC.
2 .\" All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
13 .\" THIS SOFTWARE IS PROVIDED BY Softweyr LLC AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL Softweyr LLC OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" $FreeBSD: src/lib/libc/sys/aio_write.2,v 1.16 2003/01/13 10:37:11 tjr Exp $
27 .Dd September 18, 2008
32 .Nd asynchronous write to a file (REALTIME)
39 .Fa "struct aiocb *aiocbp"
44 system call allows the calling process to write
45 .Fa aiocbp->aio_nbytes
46 from the buffer pointed to by
49 .Fa aiocbp->aio_fildes .
50 The call returns immediately after the write request has been enqueued
51 to the descriptor; the write may or may not have completed at the time
52 the call returns. If the request could not be enqueued, generally due
53 to invalid arguments, the call returns without having enqueued the
59 .Fa aiocbp->aio_fildes ,
61 operations append to the file in the same order as the calls were
64 is not set for the file descriptor, the write operation will occur at
65 the absolute position from the beginning of the file plus
66 .Fa aiocbp->aio_offset .
69 .Dv _POSIX_PRIORITIZED_IO
70 is defined, and the descriptor supports it, then the enqueued
71 operation is submitted at a priority equal to that of the calling
73 .Fa aiocbp->aio_reqprio .
77 pointer may be subsequently used as an argument to
81 in order to determine return or error status for the enqueued operation
82 while it is in progress.
84 If the request is successfully enqueued, the value of
85 .Fa aiocbp->aio_offset
86 can be modified during the request as context, so this value must not
87 be referenced after the request is enqueued.
89 The Asynchronous I/O Control Block structure pointed to by
91 and the buffer that the
93 member of that structure references must remain valid until the
94 operation has completed. For this reason, use of auto (stack) variables
95 for these objects is discouraged.
97 The asynchronous I/O control buffer
99 should be zeroed before the
101 system call to avoid passing bogus context information to the kernel.
103 Modifications of the Asynchronous I/O Control Block structure or the
104 buffer contents after the request has been enqueued, but before the
105 request has completed, are not allowed.
107 If the file offset in
108 .Fa aiocbp->aio_offset
109 is past the offset maximum for
110 .Fa aiocbp->aio_fildes ,
117 system call will fail if:
121 Due to system resource limitations,
122 the request was not queued.
127 system call is not supported.
130 The following conditions may be synchronously detected when the
132 system call is made, or asynchronously, at any time thereafter. If they
133 are detected at call time,
137 appropriately; otherwise the
139 system call must be called, and will return -1, and
141 must be called to determine the actual value that would have been
149 .Fa aiocbp->aio_fildes
151 is invalid, or is not opened for writing.
155 .Fa aiocbp->aio_offset
159 The priority specified by
160 .Fa aiocbp->aio_reqprio
161 is not a valid priority.
164 The number of bytes specified by
165 .Fa aiocbp->aio_nbytes
170 .Fa aiocbp->aio_sigevent.sigev_notify
171 is set to SIGEV_THREAD (SIGEV_THREAD is not supported).
174 If the request is successfully enqueued, but subsequently canceled
175 or an error occurs, the value returned by the
177 system call is per the
179 system call, and the value returned by the
181 system call is either one of the error returns from the
183 system call, or one of:
188 .Fa aiocbp->aio_fildes
190 is invalid for writing.
193 The request was explicitly canceled via a call to
206 is expected to conform to the
212 system call first appeared in
215 This manual page was written by
216 .An Wes Peters Aq wes@softweyr.com .
218 Invalid information in
219 .Fa aiocbp->_aiocb_private
220 may confuse the kernel.