*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: aio_cancel | Section: 3 | Source: NetBSD | File: aio_cancel.3
AIO_CANCEL(3) FreeBSD Library Functions Manual AIO_CANCEL(3) NAME aio_cancel - cancel an outstanding asynchronous I/O operation (REALTIME) LIBRARY POSIX Real-time Library (librt, -lrt) SYNOPSIS #include <aio.h> int aio_cancel(int fildes, struct aiocb * aiocbp); DESCRIPTION The aio_cancel() system call cancels the outstanding asynchronous I/O request for the file descriptor specified in fildes. If aiocbp 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. RETURN VALUES The aio_cancel() system call 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. ERRORS An error return from aio_cancel() indicates: [EBADF] The fildes argument is an invalid file descriptor. SEE ALSO aio(3) STANDARDS The aio_cancel() system call is expected to conform to the IEEE Std 1003.1-2001 ("POSIX.1") standard. HISTORY The aio_cancel() system call first appeared in NetBSD 5.0. FreeBSD 14.1-RELEASE-p8 May 17, 2010 FreeBSD 14.1-RELEASE-p8

Navigation Options