1 .\" Copyright (c) 1998 Terry Lambert
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 THE AUTHOR 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 THE AUTHOR 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_read.2,v 1.19 2003/01/14 02:37:06 tjr Exp $
32 .Nd asynchronous read from a file (REALTIME)
38 .Fn aio_read "struct aiocb *iocb"
42 system call allows the calling process to read
46 beginning at the offset
48 into the buffer pointed to by
50 The call returns immediately after the read request has
51 been enqueued to the descriptor; the read may or may not have
52 completed at the time the call returns.
54 If _POSIX_PRIORITIZED_IO is defined, and the descriptor supports it,
55 then the enqueued operation is submitted at a priority equal to that
56 of the calling process minus
57 .Fa iocb->aio_reqprio .
60 .Fa iocb->aio_lio_opcode
68 pointer may be subsequently used as an argument to
72 in order to determine return or error status for the enqueued operation
73 while it is in progress.
75 If the request could not be enqueued (generally due to invalid arguments),
76 then the call returns without having enqueued the request.
78 If the request is successfully enqueued, the value of
80 can be modified during the request as context, so this value must
81 not be referenced after the request is enqueued.
83 The Asynchronous I/O Control Block structure pointed to by
85 and the buffer that the
87 member of that structure references must remain valid until the
88 operation has completed. For this reason, use of auto (stack) variables
89 for these objects is discouraged.
91 The asynchronous I/O control buffer
93 should be zeroed before the
95 call to avoid passing bogus context information to the kernel.
97 Modifications of the Asynchronous I/O Control Block structure or the
98 buffer contents after the request has been enqueued, but before the
99 request has completed, are not allowed.
101 If the file offset in
103 is past the offset maximum for
104 .Fa iocb->aio_fildes ,
113 system call will fail if:
116 The request was not queued because of system resource limitations.
120 system call is not supported.
123 The following conditions may be synchronously detected when the
125 system call is made, or asynchronously, at any time thereafter. If they
126 are detected at call time,
130 appropriately; otherwise the
132 system call must be called, and will return -1, and
134 must be called to determine the actual value that would have been
147 is not valid, the priority specified by
148 .Fa iocb->aio_reqprio
149 is not a valid priority, or the number of bytes specified by
153 The file is a regular file,
155 is greater than zero, the starting offset in
157 is before the end of the file, but is at or beyond the
162 If the request is successfully enqueued, but subsequently cancelled
163 or an error occurs, the value returned by the
165 system call is per the
167 system call, and the value returned by the
169 system call is either one of the error returns from the
171 system call, or one of:
177 is invalid for reading.
179 The request was explicitly cancelled via a call to
196 system call is expected to conform to the
202 system call first appeared in
206 manual page was written by
207 .An Terry Lambert Aq terry@whistle.com .
209 Invalid information in
210 .Fa iocb->_aiocb_private
211 may confuse the kernel.