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