.\" Copyright (C) 2003 Free Software Foundation, Inc. .\" This file is distributed according to the GNU General Public License. .\" See the file COPYING in the top level source directory for details. .\" .\" .de Sh \" Subsection .\" .br .\" .if t .Sp .\" .ne 5 .\" .PP .\" \fB\\$1\fP .\" .PP .\" .. .\" .de Sp \" Vertical space (when we can't use .PP) .\" .if t .sp .5v .\" .if n .sp .\" .. .\" .de Ip \" List item .\" .br .\" .ie \\n(.$>=3 .ne \\$3 .\" .el .ne 3 .\" .IP "\\$1" \\$2 .\" .. .TH IO_SUBMIT 2 2003-02-21 "Linux" "Linux Programmer's Manual" .SH NAME io_submit \- submit asynchronous I/O blocks for processing .SH "SYNOPSIS" .nf .\" .ad l .\" .hy 0 .B #include .\" #include .sp .\" .HP 16 .BI "int io_submit(aio_context_t " ctx_id ", long " nr \ ", struct iocb **" iocbpp ); .\" .ad .\" .hy .sp Link with \fI\-laio\fP. .fi .SH "DESCRIPTION" .PP .BR io_submit () queues \fInr\fP I/O request blocks for processing in the AIO context \fIctx_id\fP. \fIiocbpp\fP should be an array of \fInr\fP AIO request blocks, which will be submitted to context \fIctx_id\fP. .SH "RETURN VALUE" .PP On success, .BR io_submit () returns the number of \fIiocb\fPs submitted (which may be 0 if \fInr\fP is zero); on failure, it returns one of the errors listed under ERRORS. .SH "ERRORS" .TP .B EAGAIN Insufficient resources are available to queue any \fIiocb\fPs. .TP .B EBADF The file descriptor specified in the first \fIiocb\fP is invalid. .TP .B EFAULT One of the data structures points to invalid data. .TP .B EINVAL The \fIaio_context\fP specified by \fIctx_id\fP is invalid. \fInr\fP is less than 0. The \fIiocb\fP at *iocbpp[0] is not properly initialized, or the operation specified is invalid for the file descriptor in the \fIiocb\fP. .TP .B ENOSYS .BR io_submit () is not implemented on this architecture. .SH "VERSIONS" .PP The asynchronous I/O system calls first appeared in Linux 2.5, August 2002. .SH "CONFORMING TO" .PP .BR io_submit () is Linux-specific and should not be used in programs that are intended to be portable. .SH "SEE ALSO" .BR io_cancel (2), .BR io_destroy (2), .BR io_getevents (2) .BR io_setup (2), .\" .SH "NOTES" .\" .PP .\" The asynchronous I/O system calls were written by Benjamin LaHaise. .\" .SH AUTHOR .\" Kent Yoder.