Section: Linux AIO (3)Updated: 2009-06-10Local indexUp
NAME
aio_suspend64 - Wait until one or more requests of a specific set terminates
SYNOPSYS
#include <errno.h> #include <aio.h> int aio_suspend64(const struct aiocb64 *const list[], int nent, const struct timespec *timeout);
DESCRIPTION
This function is similar to
aio_suspend
with the only difference
that the argument is a reference to a variable of type
struct aiocb64.
When the sources are compiled with
_FILE_OFFSET_BITS == 64
this
function is available under the name
aio_suspend
and so
transparently replaces the interface for small files on 32 bit
machines.