[Previous] [Contents] [Next]

aio_fsync()

Asynchronously synchronize a file

Synopsis:

#include <aio.h>

int aio_fsync( int op, 
               struct aiocb * aiocbptr );

Library:

libc

Description:

The aio_fsync() function asynchronously forces all I/O operations associated with the file indicated by the file descriptor to the synchronized I/O completion state.


Note: Asynchronous I/O operations aren't currently supported.

Returns:

-1, and errno is set.

Errors:

ENOSYS
The aio_fsync() function isn't currently supported.

Classification:

POSIX 1003.1 (Realtime Extensions)

Safety:
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes

[Previous] [Contents] [Next]