[Previous] [Contents] [Index] [Next]

Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

aio_error()

Get the error status for an asynchronous I/O operation


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

Synopsis:

#include <aio.h>

int aio_error( const struct aiocb * aiocbptr );

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

The aio_error() function returns the error status associated with the aiocb structure referenced by the aiocbptr argument. The error status for an asynchronous I/O operation is the errno value that's set by the corresponding read(), write(), or fsync() operation.

Returns:

-1; errno is set.

Errors:

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

Classification:

POSIX 1003.1 AIO

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

[Previous] [Contents] [Index] [Next]