aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/sys/aio_waitcomplete.2
diff options
context:
space:
mode:
authorChris Costello <chris@FreeBSD.org>2000-06-23 05:05:44 +0000
committerChris Costello <chris@FreeBSD.org>2000-06-23 05:05:44 +0000
commitbb33e42207f96329d22cc640a12e8b693be36a81 (patch)
treefa4c79e21a165b0f93bbd1c7b1ccc1c6a6518259 /lib/libc/sys/aio_waitcomplete.2
parente466c075263ea1e469cec7b662c7563e27877acf (diff)
downloadsrc-bb33e42207f96329d22cc640a12e8b693be36a81.tar.gz
src-bb33e42207f96329d22cc640a12e8b693be36a81.zip
Replace .Va, .Ar and .Nm with .Fa or .Va where necessary, examples:
``.Ar errno'' -> ``.Va errno'' ``.Nm ops'' -> ``.Fa ops'' ``.Va fd'' -> ``.Fa fd''
Notes
Notes: svn path=/head/; revision=61988
Diffstat (limited to 'lib/libc/sys/aio_waitcomplete.2')
-rw-r--r--lib/libc/sys/aio_waitcomplete.212
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/sys/aio_waitcomplete.2 b/lib/libc/sys/aio_waitcomplete.2
index 2362d0d6091f..2c5dadc88491 100644
--- a/lib/libc/sys/aio_waitcomplete.2
+++ b/lib/libc/sys/aio_waitcomplete.2
@@ -42,21 +42,21 @@ The
function waits for completion of an asynchronous I/O request. Upon completion,
.Fn aio_waitcomplete
returns the result of the function and sets
-.Ar iocbp
+.Fa iocbp
to point to the structure associated with the original request. If an
asynchronous I/O request is completed before
.Fn aio_waitcomplete
is called, it returns immediately with the completed request.
.Pp
If
-.Ar timeout
+.Fa timeout
is a non-NULL pointer, it specifies a maximum interval to wait for a
asynchronous I/O request to complete. If
-.Ar timeout
+.Fa timeout
is a NULL pointer,
.Fn aio_waitcomplete
waits indefinitely. To effect a poll, the
-.Ar timeout
+.Fa timeout
argument should be non-NULL, pointing to a zero-valued timeval structure.
.Pp
The
@@ -66,10 +66,10 @@ function also serves the function of
thus
.Fn aio_return
should not be called for the control block returned in
-.Ar iocbp .
+.Fa iocbp .
.Sh RETURN VALUES
If an asynchronous I/O request has completed,
-.Ar iocbp
+.Fa iocbp
is set to point to the control block passed with the original request, and
the status is returned as described in
.Xr read 2 ,