|
NAMEaio_cancel —
cancel an outstanding asynchronous I/O operation
(REALTIME)
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <aio.h>
int
DESCRIPTIONTheaio_cancel () system call cancels the outstanding
asynchronous I/O request for the file descriptor specified in
fildes. If iocb is specified, only
that specific asynchronous I/O request is cancelled.
Normal asynchronous notification occurs for cancelled requests.
Requests complete with an error result of
RESTRICTIONSTheaio_cancel () system call does not cancel
asynchronous I/O requests for raw disk devices. The
aio_cancel () system call will always return
AIO_NOTCANCELED for file descriptors associated with
raw disk devices.
RETURN VALUESTheaio_cancel () system call returns -1 to indicate an
error, or one of the following:
ERRORSAn error return fromaio_cancel () indicates:
SEE ALSOaio_error(2), aio_read(2), aio_return(2), aio_suspend(2), aio_write(2), aio(4)STANDARDSTheaio_cancel () system call is expected to conform to
the IEEE Std 1003.1 (“POSIX.1”)
standard.
HISTORYTheaio_cancel () system call first appeared in
FreeBSD 3.0. The first functional implementation of
aio_cancel () appeared in FreeBSD
4.0.
AUTHORSThis manual page was originally written by Wes Peters <wes@softweyr.com>. Christopher M Sedore <cmsedore@maxwell.syr.edu> updated it whenaio_cancel () was implemented for
FreeBSD 4.0.
Visit the GSP FreeBSD Man Page Interface. |