]> git.saurik.com Git - apple/xnu.git/blame - bsd/man/man2/aio_cancel.2
xnu-2782.20.48.tar.gz
[apple/xnu.git] / bsd / man / man2 / aio_cancel.2
CommitLineData
91447636
A
1.\" Copyright (c) 1999 Softweyr LLC.
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\"
13.\" THIS SOFTWARE IS PROVIDED BY Softweyr LLC AND CONTRIBUTORS ``AS IS'' AND
14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16.\" ARE DISCLAIMED. IN NO EVENT SHALL Softweyr LLC OR CONTRIBUTORS BE LIABLE
17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
25.\" $FreeBSD: src/lib/libc/sys/aio_cancel.2,v 1.22 2003/01/13 10:37:11 tjr Exp $
26.\"
27.Dd January 19, 2000
28.Dt AIO_CANCEL 2
29.Os
30.Sh NAME
31.Nm aio_cancel
32.Nd cancel an outstanding asynchronous I/O operation (REALTIME)
33.Sh LIBRARY
34.Lb libc
35.Sh SYNOPSIS
36.In aio.h
37.Ft int
2d21ac55
A
38.Fo aio_cancel
39.Fa "int fildes"
40.Fa "struct aiocb *aiocbp"
41.Fc
91447636
A
42.Sh DESCRIPTION
43The
44.Fn aio_cancel
45system call cancels the outstanding asynchronous
46I/O request for the file descriptor specified in
47.Fa fildes .
48If
2d21ac55 49.Fa aiocbp
91447636
A
50is specified, only that specific asynchronous I/O request is cancelled.
51.Pp
52Normal asynchronous notification occurs for cancelled requests.
53Requests complete with an error result of
54.Er ECANCELED .
55.Sh RESTRICTIONS
56The
57.Fn aio_cancel
58system call does not cancel asynchronous I/O requests for raw disk devices.
59The
60.Fn aio_cancel
61system call will always return
62.Dv AIO_NOTCANCELED
63for file descriptors associated with raw disk devices.
64.Sh RETURN VALUES
65The
66.Fn aio_cancel
67system call returns -1 to indicate an error, or one of the following:
68.Bl -tag -width Dv
2d21ac55
A
69.It Bq Dv AIO_ALLDONE
70All of the requests meeting the criteria have finished.
91447636
A
71.It Bq Dv AIO_CANCELED
72All outstanding requests meeting the criteria specified were cancelled.
73.It Bq Dv AIO_NOTCANCELED
74Some requests were not cancelled, status for the requests should be
75checked with
76.Xr aio_error 2 .
91447636
A
77.El
78.Sh ERRORS
79An error return from
80.Fn aio_cancel
81indicates:
82.Bl -tag -width Er
2d21ac55 83.\" ==========
91447636
A
84.It Bq Er EBADF
85The
86.Fa fildes
87argument
2d21ac55 88is not a valid file descriptor.
91447636
A
89.El
90.Sh SEE ALSO
91.Xr aio_error 2 ,
92.Xr aio_read 2 ,
93.Xr aio_return 2 ,
94.Xr aio_suspend 2 ,
95.Xr aio_write 2 ,
96.Xr aio 4
97.Sh STANDARDS
98The
99.Fn aio_cancel
100system call is expected to conform to the
101.St -p1003.1
102standard.
103.Sh HISTORY
104The
105.Fn aio_cancel
106system call first appeared in
107.Fx 3.0 .
108The first functional implementation of
109.Fn aio_cancel
110appeared in
111.Fx 4.0 .
112.Sh AUTHORS
113.An -nosplit
114This
115manual page was originally written by
116.An Wes Peters Aq wes@softweyr.com .
117.An Christopher M Sedore Aq cmsedore@maxwell.syr.edu
118updated it when
119.Fn aio_cancel
120was implemented for
121.Fx 4.0 .