man.bsd.lv manual page server

Manual Page Search Parameters

AIO_CANCEL(3) Library Functions Manual AIO_CANCEL(3)

aio_cancelcancel an outstanding asynchronous I/O operation (REALTIME)

library “librt”

#include <aio.h>

int
aio_cancel(int fildes, struct aiocb * iocb);

The () function 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 ECANCELED.

The () function does not cancel asynchronous I/O requests for raw disk devices. The aio_cancel() function will always return AIO_NOTCANCELED for file descriptors associated with raw disk devices.

The aio_cancel() function returns -1 to indicate an error, or one of the following:

[AIO_CANCELED]
All outstanding requests meeting the criteria specified were cancelled.
[AIO_NOTCANCELED]
Some requests were not cancelled, status for the requests should be checked with aio_error(3).
[AIO_ALLDONE]
All of the requests meeting the criteria have finished.

An error return from aio_cancel() indicates:

[]
fildes is an invalid file descriptor.

aio_error(3), aio_read(3), aio_return(3), aio_suspend(3), aio_write(3)

The aio_cancel() function is expected to conform to the IEEE Std 1003.2 (“POSIX.2”) standard.

The aio_cancel() function first appeared in FreeBSD 3.0. The first functional implementation of aio_cancel() appeared in FreeBSD 4.0.

This manual page was originally written by Wes Peters <wes@softweyr.com>. Christopher M Sedore <cmsedore@maxwell.syr.edu> updated it when aio_cancel() was implemented for FreeBSD 4.0.

January 19, 2000 DragonFly-5.6.1