man-pages/man2/io_cancel.2

96 lines
2.5 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" 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.
.\"
.TH IO_CANCEL 2 2012-07-13 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
io_cancel \- cancel an outstanding asynchronous I/O operation
2004-11-03 13:51:07 +00:00
.SH "SYNOPSIS"
.nf
.BR "#include <linux/aio_abi.h>" " /* Defines needed types */"
.BI "int io_cancel(aio_context_t " ctx_id ", struct iocb *" iocb ,
.BI " struct io_event *" result );
.fi
.IR Note :
There is no glibc wrapper for this system call; see NOTES.
2004-11-03 13:51:07 +00:00
.SH "DESCRIPTION"
.PP
The
.BR io_cancel ()
system call
2007-05-12 13:19:59 +00:00
attempts to cancel an asynchronous I/O operation previously submitted with
.BR io_submit (2).
The
.I ctx_id
argument is the AIO context ID of the operation to be canceled.
If the AIO context is found, the event will be canceled and then copied
2007-07-18 20:24:30 +00:00
into the memory pointed to by \fIresult\fP without being placed
2004-11-03 13:51:07 +00:00
into the completion queue.
.SH "RETURN VALUE"
On success,
.BR io_cancel ()
returns 0.
For the failure return, see NOTES.
2004-11-03 13:51:07 +00:00
.SH "ERRORS"
.TP
.B EAGAIN
The \fIiocb\fP specified was not canceled.
2004-11-03 13:51:07 +00:00
.TP
.B EFAULT
2004-11-03 13:51:07 +00:00
One of the data structures points to invalid data.
.TP
.B EINVAL
The AIO context specified by \fIctx_id\fP is invalid.
2004-11-03 13:51:07 +00:00
.TP
.B ENOSYS
.BR io_cancel ()
is not implemented on this architecture.
2004-11-03 13:51:07 +00:00
.SH "VERSIONS"
.PP
The asynchronous I/O system calls first appeared in Linux 2.5.
2004-11-03 13:51:07 +00:00
.SH "CONFORMING TO"
.PP
.BR io_cancel ()
2007-12-25 21:28:09 +00:00
is Linux-specific and should not be used
2006-12-27 03:54:41 +00:00
in programs that are intended to be portable.
.SH NOTES
Glibc does not provide a wrapper function for this system call.
You could invoke it using
.BR syscall (2).
But instead, you probably want to use the
.BR io_cancel ()
wrapper function provided by
.\" http://git.fedorahosted.org/git/?p=libaio.git
.IR libaio .
Note that the
.I libaio
wrapper function uses a different type
.RI ( io_context_t )
.\" But glibc is confused, since <libaio.h> uses 'io_context_t' to declare
.\" the system call.
for the
.I ctx_id
argument.
Note also that the
.I libaio
wrapper does not follow the usual C library conventions for indicating errors:
on error it returns a negated error number
(the negative of one of the values listed in ERRORS).
If the system call is invoked via
.BR syscall (2),
then the return value follows the usual conventions for
indicating an error: \-1, with
.I errno
set to a (positive) value that indicates the error.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR io_destroy (2),
.BR io_getevents (2),
.BR io_setup (2),
.BR io_submit (2),
.BR aio (7)
.\" .SH AUTHOR
.\" Kent Yoder.