[Previous] [Contents] [Next]

aio_cancel()

Cancel an asynchronous I/O operation

Synopsis:

#include <aio.h>

int aio_cancel( int fd, 
                struct aiocb * aiocbptr );

Library:

libc

Description:

The aio_cancel() function attempts to cancel one or more asynchronous I/O requests currently outstanding against file descriptor.


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

Returns:

-1, and errno is set.

Errors:

ENOSYS
The aio_cancel() 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]