View | Details | Raw Unified | Return to bug 190942
Collapse All | Expand All

(-)b/lib/libc/sys/aio_cancel.2 (+4 lines)
Lines 82-87 The Link Here
82
.Fa fildes
82
.Fa fildes
83
argument
83
argument
84
is an invalid file descriptor.
84
is an invalid file descriptor.
85
.It Bq Er ENOSYS
86
The
87
.Fn aio_cancel
88
system call is not supported.
85
.El
89
.El
86
.Sh SEE ALSO
90
.Sh SEE ALSO
87
.Xr aio_error 2 ,
91
.Xr aio_error 2 ,
(-)b/lib/libc/sys/aio_error.2 (+4 lines)
Lines 72-77 The Link Here
72
.Fa iocb
72
.Fa iocb
73
argument
73
argument
74
does not reference an outstanding asynchronous I/O request.
74
does not reference an outstanding asynchronous I/O request.
75
.It Bq Er ENOSYS
76
The
77
.Fn aio_error
78
system call is not supported.
75
.El
79
.El
76
.Sh SEE ALSO
80
.Sh SEE ALSO
77
.Xr aio_cancel 2 ,
81
.Xr aio_cancel 2 ,
(-)b/lib/libc/sys/aio_fsync.2 (-4 / +4 lines)
Lines 80-94 system call will fail if: Link Here
80
.Bl -tag -width Er
80
.Bl -tag -width Er
81
.It Bq Er EAGAIN
81
.It Bq Er EAGAIN
82
The request was not queued because of system resource limitations.
82
The request was not queued because of system resource limitations.
83
.It Bq Er ENOSYS
84
The
85
.Fn aio_fsync
86
system call is not supported.
87
.It Bq Er EINVAL
83
.It Bq Er EINVAL
88
A value of the
84
A value of the
89
.Fa op
85
.Fa op
90
argument is not set to
86
argument is not set to
91
.Dv O_SYNC .
87
.Dv O_SYNC .
88
.It Bq Er ENOSYS
89
The
90
.Fn aio_fsync
91
system call is not supported.
92
.El
92
.El
93
.Pp
93
.Pp
94
The following conditions may be synchronously detected when the
94
The following conditions may be synchronously detected when the
(-)b/lib/libc/sys/aio_return.2 (+4 lines)
Lines 73-78 The Link Here
73
.Fa iocb
73
.Fa iocb
74
argument
74
argument
75
does not reference a completed asynchronous I/O request.
75
does not reference a completed asynchronous I/O request.
76
.It Bq Er ENOSYS
77
The
78
.Fn aio_return
79
system call is not supported.
76
.El
80
.El
77
.Sh SEE ALSO
81
.Sh SEE ALSO
78
.Xr aio_cancel 2 ,
82
.Xr aio_cancel 2 ,
(-)b/lib/libc/sys/aio_suspend.2 (+4 lines)
Lines 91-96 asynchronous I/O requests, or at least one of the requests is not Link Here
91
valid.
91
valid.
92
.It Bq Er EINTR
92
.It Bq Er EINTR
93
the suspend was interrupted by a signal.
93
the suspend was interrupted by a signal.
94
.It Bq Er ENOSYS
95
The
96
.Fn aio_suspend
97
system call is not supported.
94
.El
98
.El
95
.Sh SEE ALSO
99
.Sh SEE ALSO
96
.Xr aio_cancel 2 ,
100
.Xr aio_cancel 2 ,
(-)b/lib/libc/sys/aio_waitcomplete.2 (-3 / +6 lines)
Lines 93-100 The Link Here
93
.Fn aio_waitcomplete
93
.Fn aio_waitcomplete
94
system call fails if:
94
system call fails if:
95
.Bl -tag -width Er
95
.Bl -tag -width Er
96
.It Bq Er EINVAL
97
The specified time limit is invalid.
98
.It Bq Er EAGAIN
96
.It Bq Er EAGAIN
99
The process has not yet called
97
The process has not yet called
100
.Fn aio_read
98
.Fn aio_read
Lines 103-108 or Link Here
103
.It Bq Er EINTR
101
.It Bq Er EINTR
104
A signal was delivered before the timeout expired and before any
102
A signal was delivered before the timeout expired and before any
105
asynchronous I/O requests completed.
103
asynchronous I/O requests completed.
104
.It Bq Er EINVAL
105
The specified time limit is invalid.
106
.It Bq Er ENOSYS
107
The
108
.Fn aio_waitcomplete
109
system call is not supported.
106
.It Bq Er EWOULDBLOCK
110
.It Bq Er EWOULDBLOCK
107
.It Bq Er EINPROGRESS
111
.It Bq Er EINPROGRESS
108
The specified time limit expired before any asynchronous I/O requests
112
The specified time limit expired before any asynchronous I/O requests
109
- 

Return to bug 190942