Module Name: src
Committed By: jruoho
Date: Mon May 17 19:04:55 UTC 2010
Modified Files:
src/lib/librt: aio.3
Log Message:
Fix a typo of a typo, and use .Sq in couple of places.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/librt/aio.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/librt/aio.3
diff -u src/lib/librt/aio.3:1.2 src/lib/librt/aio.3:1.3
--- src/lib/librt/aio.3:1.2 Mon May 17 17:55:49 2010
+++ src/lib/librt/aio.3 Mon May 17 19:04:55 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: aio.3,v 1.2 2010/05/17 17:55:49 jruoho Exp $ $
+.\" $NetBSD: aio.3,v 1.3 2010/05/17 19:04:55 jruoho Exp $ $
.\"
.\" Copyright (c) 2010 Jukka Ruohonen <[email protected]>
.\" All rights reserved.
@@ -40,7 +40,7 @@
standard defines an interface for asynchronous input and output.
Although in
.Nx
-this provided as part of the
+this is provided as part of the
.Lb librt ,
the implementation largely resides in the kernel.
.Ss Rationale
@@ -158,10 +158,10 @@
and
.Va aio_nbytes
are conceptually similar to the parameters
-.Fa buf ,
-.Fa fildes ,
+.Sq buf ,
+.Sq fildes ,
and
-.Fa nbytes
+.Sq nbytes
used in the standard
.Xr read 2
and
@@ -334,7 +334,7 @@
For instance, the
.Fx
implementation uses a function
-.Dq Fn aio_waitcomplete
+.Sq Fn aio_waitcomplete
to wait for the next completion of an
.Nm aio
request.