Operating systems, development tools, and professional services
for connected embedded systems

Developer Resources
Blogs
Board support packages
Foundry27 projects
Forums
Hardware support listing
Online video tutorials
Product documentation

QNX Developer Support

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

aio_write()

Asynchronously write to a file


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

Synopsis:

#include <aio.h>

int aio_write( 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_write() function asynchronously writes to a file.

Returns:

-1; errno is set.

Errors:

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