include int lio_listio(int mode , struct aiocb *restrict const aiocb_list [restrict], int nitems ... operations described by the array aiocb_list . The mode operation has one of …SYNOPSIS #include int aio_suspend(const struct aiocb *const aiocb_list [], int nitems , const struct ... asynchronous I/O requests in the list aiocb_list has completed. • A signa…SYNOPSIS #include int aio_read(struct aiocb * aiocbp ); DESCRIPTION The aio_read () function queues ... description of the aiocb structure.) The data is read starting at the abso…SYNOPSIS #include int aio_write(struct aiocb * aiocbp ); DESCRIPTION The aio_write () function queues ... description of the aiocb structure.) If O_APPEND is not set, the data is…include int aio_fsync(int op , struct aiocb * aiocbp ); DESCRIPTION The aio_fsync () function does ... description of the aiocb structure.) More precisely, if op is O_SYNC , then…SYNOPSIS #include int aio_error(const struct aiocb * aiocbp ); DESCRIPTION The aio_error () function returns ... description of the aiocb structure.) RETURN VALUE This function r…include int aio_cancel(int fd , struct aiocb * aiocbp ); DESCRIPTION The aio_cancel () function attempts ... description of the aiocb structure.) Normal asynchronous notification…SYNOPSIS #include ssize_t aio_return(struct aiocb * aiocbp ); DESCRIPTION The aio_return () function returns ... description of the aiocb structure.) This function should be call…