NAME
aio_write64 - Initiate an asynchronous write operation
SYNOPSYS
#include <errno.h>
#include <aio.h>
I int aio_write64 (struct aiocb *aiocbp)
DESCRIPTION
This function is similar to the
R aio_write
function. The only
difference is that on
R 32 bit
machines the file descriptor should
be opened in the large file mode. Internally
R aio_write64
uses
functionality equivalent to
R lseek64
to position the file descriptor correctly for the writing,
as opposed to
R lseek
functionality used in
R aio_write.
When the sources are compiled with
R _FILE_OFFSET_BITS == 64
, this
function is available under the name
R aio_write
and so transparently
replaces the interface for small files on 32 bit machines.
RETURN VALUES
See
R aio_write.
ERRORS
See
R aio_write.
SEE ALSO
R aio(3),
R aio_cancel(3),
R aio_cancel64(3),
R aio_error(3),
R aio_error64(3),
R aio_fsync(3),
R aio_fsync64(3),
R aio_init(3),
R aio_read(3),
R aio_read64(3),
R aio_return(3),
R aio_return64(3),
R aio_suspend(3),
R aio_suspend64(3),
R aio_write(3),
R errno(3),