1AIO_FSYNC(3) Linux Programmer's Manual AIO_FSYNC(3)
2
3
4
6 aio_fsync - asynchronous file synchronization
7
9 #include <aio.h>
10
11 int aio_fsync(int op, struct aiocb *aiocbp);
12
13 Link with -lrt.
14
16 The aio_fsync() function does a sync on all outstanding asynchronous
17 I/O operations associated with aiocbp->aio_fildes. (See aio(7) for a
18 description of the aiocb structure.)
19
20 More precisely, if op is O_SYNC, then all currently queued I/O opera‐
21 tions shall be completed as if by a call of fsync(2), and if op is
22 O_DSYNC, this call is the asynchronous analog of fdatasync(2).
23
24 Note that this is a request only; it does not wait for I/O completion.
25
26 Apart from aio_fildes, the only field in the structure pointed to by
27 aiocbp that is used by this call is the aio_sigevent field (a sigevent
28 structure, described in sigevent(7)), which indicates the desired type
29 of asynchronous notification at completion. All other fields are
30 ignored.
31
33 On success (the sync request was successfully queued) this function
34 returns 0. On error -1 is returned, and errno is set appropriately.
35
37 EAGAIN Out of resources.
38
39 EBADF aio_fildes is not a valid file descriptor open for writing.
40
41 EINVAL Synchronized I/O is not supported for this file, or op is not
42 O_SYNC or O_DSYNC.
43
44 ENOSYS aio_fsync() is not implemented.
45
47 The aio_fsync() function is available since glibc 2.1.
48
50 POSIX.1-2001, POSIX.1-2008.
51
53 aio_cancel(3), aio_error(3), aio_read(3), aio_return(3), aio_sus‐
54 pend(3), aio_write(3), lio_listio(3), aio(7), sigevent(7)
55
57 This page is part of release 3.53 of the Linux man-pages project. A
58 description of the project, and information about reporting bugs, can
59 be found at http://www.kernel.org/doc/man-pages/.
60
61
62
63 2012-05-08 AIO_FSYNC(3)