1AIO_WRITE(3) Linux Programmer's Manual AIO_WRITE(3)
2
3
4
6 aio_write - asynchronous write
7
9 #include <aio.h>
10
11 int aio_write(struct aiocb *aiocbp);
12
13 Link with -lrt.
14
16 The aio_write() function queues the I/O request described by the buffer
17 pointed to by aiocbp. This function is the asynchronous analog of
18 write(2). The arguments of the call
19
20 write(fd, buf, count)
21
22 correspond (in order) to the fields aio_fildes, aio_buf, and aio_nbytes
23 of the structure pointed to by aiocbp. (See aio(7) for a description
24 of the aiocb structure.)
25
26 If O_APPEND is not set, the data is written starting at the absolute
27 position aiocbp->aio_offset, regardless of the file offset. If O_AP‐
28 PEND is set, data is written at the end of the file in the same order
29 as aio_write() calls are made. After the call, the value of the file
30 offset is unspecified.
31
32 The "asynchronous" means that this call returns as soon as the request
33 has been enqueued; the write may or may not have completed when the
34 call returns. One tests for completion using aio_error(3). The return
35 status of a completed I/O operation can be obtained aio_return(3).
36 Asynchronous notification of I/O completion can be obtained by setting
37 aiocbp->aio_sigevent appropriately; see sigevent(7) for details.
38
39 If _POSIX_PRIORITIZED_IO is defined, and this file supports it, then
40 the asynchronous operation is submitted at a priority equal to that of
41 the calling process minus aiocbp->aio_reqprio.
42
43 The field aiocbp->aio_lio_opcode is ignored.
44
45 No data is written to a regular file beyond its maximum offset.
46
48 On success, 0 is returned. On error, the request is not enqueued, -1
49 is returned, and errno is set appropriately. If an error is detected
50 only later, it will be reported via aio_return(3) (returns status -1)
51 and aio_error(3) (error status—whatever one would have gotten in errno,
52 such as EBADF).
53
55 EAGAIN Out of resources.
56
57 EBADF aio_fildes is not a valid file descriptor open for writing.
58
59 EFBIG The file is a regular file, we want to write at least one byte,
60 but the starting position is at or beyond the maximum offset for
61 this file.
62
63 EINVAL One or more of aio_offset, aio_reqprio, aio_nbytes are invalid.
64
65 ENOSYS aio_write() is not implemented.
66
68 The aio_write() function is available since glibc 2.1.
69
71 For an explanation of the terms used in this section, see at‐
72 tributes(7).
73
74 ┌────────────┬───────────────┬─────────┐
75 │Interface │ Attribute │ Value │
76 ├────────────┼───────────────┼─────────┤
77 │aio_write() │ Thread safety │ MT-Safe │
78 └────────────┴───────────────┴─────────┘
80 POSIX.1-2001, POSIX.1-2008.
81
83 It is a good idea to zero out the control block before use. The con‐
84 trol block must not be changed while the write operation is in
85 progress. The buffer area being written out must not be accessed dur‐
86 ing the operation or undefined results may occur. The memory areas in‐
87 volved must remain valid.
88
89 Simultaneous I/O operations specifying the same aiocb structure produce
90 undefined results.
91
93 aio_cancel(3), aio_error(3), aio_fsync(3), aio_read(3), aio_return(3),
94 aio_suspend(3), lio_listio(3), aio(7)
95
97 This page is part of release 5.10 of the Linux man-pages project. A
98 description of the project, information about reporting bugs, and the
99 latest version of this page, can be found at
100 https://www.kernel.org/doc/man-pages/.
101
102
103
104 2017-09-15 AIO_WRITE(3)