FreeBSD Bugzilla – Attachment 23022 Details for
Bug 39748
[PATCH] Some changes to aio_*(2)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 4.06 KB, created by
Philipp Mergenthaler
on 2002-06-24 02:10:00 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Philipp Mergenthaler
Created:
2002-06-24 02:10:00 UTC
Size:
4.06 KB
patch
obsolete
>Index: aio_cancel.2 >=================================================================== >RCS file: /ncvs/src/lib/libc/sys/aio_cancel.2,v >retrieving revision 1.16 >diff -u -r1.16 aio_cancel.2 >--- aio_cancel.2 1 Oct 2001 16:09:01 -0000 1.16 >+++ aio_cancel.2 23 Jun 2002 22:47:15 -0000 >@@ -72,12 +72,6 @@ > .It Bq Dv AIO_ALLDONE > All of the requests meeting the criteria have finished. > .El >-.Sh SEE ALSO >-.Xr aio_error 2 , >-.Xr aio_read 2 , >-.Xr aio_return 2 , >-.Xr aio_suspend 2 , >-.Xr aio_write 2 > .Sh ERRORS > An error return from > .Fn aio_cancel >@@ -87,6 +81,13 @@ > .Fa fildes > is an invalid file descriptor. > .El >+.Sh SEE ALSO >+.Xr aio_error 2 , >+.Xr aio_read 2 , >+.Xr aio_return 2 , >+.Xr aio_suspend 2 , >+.Xr aio_waitcomplete 2 , >+.Xr aio_write 2 > .Sh STANDARDS > The > .Fn aio_cancel >Index: aio_error.2 >=================================================================== >RCS file: /ncvs/src/lib/libc/sys/aio_error.2,v >retrieving revision 1.12 >diff -u -r1.12 aio_error.2 >--- aio_error.2 1 Oct 2001 16:09:01 -0000 1.12 >+++ aio_error.2 23 Jun 2002 22:36:52 -0000 >@@ -75,6 +75,7 @@ > .Xr aio_read 2 , > .Xr aio_return 2 , > .Xr aio_suspend 2 , >+.Xr aio_waitcomplete 2 , > .Xr aio_write 2 , > .Xr fsync 2 , > .Xr read 2 , >Index: aio_read.2 >=================================================================== >RCS file: /ncvs/src/lib/libc/sys/aio_read.2,v >retrieving revision 1.11 >diff -u -r1.11 aio_read.2 >--- aio_read.2 1 Oct 2001 16:09:01 -0000 1.11 >+++ aio_read.2 23 Jun 2002 22:48:12 -0000 >@@ -105,8 +105,6 @@ > no I/O will occur. > .Sh RETURN VALUES > .Rv -std aio_read >-.Sh DIAGNOSTICS >-None. > .Sh ERRORS > The > .Fn aio_read >@@ -179,6 +177,15 @@ > .Fa iocb->aio_offset > would be invalid. > .El >+.Sh SEE ALSO >+.Xr aio_cancel 2 , >+.Xr aio_error 2 , >+.Xr aio_return 2 , >+.Xr aio_suspend 2 , >+.Xr aio_waitcomplete 2 , >+.Xr aio_write 2 , >+.Xr fsync 2 , >+.Xr read 2 > .Sh STANDARDS > The > .Fn aio_read >Index: aio_return.2 >=================================================================== >RCS file: /ncvs/src/lib/libc/sys/aio_return.2,v >retrieving revision 1.11 >diff -u -r1.11 aio_return.2 >--- aio_return.2 1 Oct 2001 16:09:01 -0000 1.11 >+++ aio_return.2 23 Jun 2002 22:35:01 -0000 >@@ -63,15 +63,6 @@ > and sets > .Dv errno > to indicate the error condition. >-.Sh SEE ALSO >-.Xr aio_cancel 2 , >-.Xr aio_error 2 , >-.Xr aio_read 2 , >-.Xr aio_suspend 2 , >-.Xr aio_write 2 , >-.Xr fsync 2 , >-.Xr read 2 , >-.Xr write 2 > .Sh ERRORS > The > .Fn aio_return >@@ -81,6 +72,16 @@ > .Fa iocb > does not reference an outstanding asynchronous I/O request. > .El >+.Sh SEE ALSO >+.Xr aio_cancel 2 , >+.Xr aio_error 2 , >+.Xr aio_read 2 , >+.Xr aio_suspend 2 , >+.Xr aio_waitcomplete 2 , >+.Xr aio_write 2 , >+.Xr fsync 2 , >+.Xr read 2 , >+.Xr write 2 > .Sh STANDARDS > .Fn aio_return > is expected to conform to the >Index: aio_suspend.2 >=================================================================== >RCS file: /ncvs/src/lib/libc/sys/aio_suspend.2,v >retrieving revision 1.13 >diff -u -r1.13 aio_suspend.2 >--- aio_suspend.2 1 Oct 2001 16:09:01 -0000 1.13 >+++ aio_suspend.2 23 Jun 2002 22:49:52 -0000 >@@ -67,12 +67,6 @@ > returns 0. Otherwise it returns -1 and sets > .Va errno > to indicate the error, as enumerated below. >-.Sh SEE ALSO >-.Xr aio_cancel 2 , >-.Xr aio_error 2 , >-.Xr aio_read 2 , >-.Xr aio_suspend 2 , >-.Xr aio_write 2 > .Sh ERRORS > The > .Fn aio_suspend >@@ -91,6 +85,13 @@ > .It Bq Er EINTR > the suspend was interrupted by a signal. > .El >+.Sh SEE ALSO >+.Xr aio_cancel 2 , >+.Xr aio_error 2 , >+.Xr aio_read 2 , >+.Xr aio_suspend 2 , >+.Xr aio_waitcomplete 2 , >+.Xr aio_write 2 > .Sh STANDARDS > .Fn aio_suspend > is expected to conform to the >Index: aio_write.2 >=================================================================== >RCS file: /ncvs/src/lib/libc/sys/aio_write.2,v >retrieving revision 1.11 >diff -u -r1.11 aio_write.2 >--- aio_write.2 16 Oct 2001 00:49:19 -0000 1.11 >+++ aio_write.2 23 Jun 2002 22:51:55 -0000 >@@ -173,6 +173,15 @@ > .Fa iocb->aio_offset > would be invalid. > .El >+.Sh SEE ALSO >+.Xr aio_cancel 2 , >+.Xr aio_error 2 , >+.Xr aio_read 2 , >+.Xr aio_return 2 , >+.Xr aio_suspend 2 , >+.Xr aio_waitcomplete 2 , >+.Xr fsync 2 , >+.Xr write 2 > .Sh STANDARDS > .Fn aio_write > is expected to conform to the
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 39748
: 23022 |
23023
|
23024