Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/man/man9 ispell. Sort SEE ALSO. Mark up NULL. Some oth...



details:   https://anonhg.NetBSD.org/src/rev/a7fdb1540e9a
branches:  trunk
changeset: 534783:a7fdb1540e9a
user:      wiz <wiz%NetBSD.org@localhost>
date:      Fri Aug 02 23:20:34 2002 +0000

description:
ispell. Sort SEE ALSO. Mark up NULL. Some other minor changes.

diffstat:

 share/man/man9/dmover.9 |  33 ++++++++++++++++++++-------------
 1 files changed, 20 insertions(+), 13 deletions(-)

diffs (114 lines):

diff -r b9175105b866 -r a7fdb1540e9a share/man/man9/dmover.9
--- a/share/man/man9/dmover.9   Fri Aug 02 23:09:03 2002 +0000
+++ b/share/man/man9/dmover.9   Fri Aug 02 23:20:34 2002 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: dmover.9,v 1.2 2002/08/02 06:50:05 thorpej Exp $
+.\"    $NetBSD: dmover.9,v 1.3 2002/08/02 23:20:34 wiz Exp $
 .\"
 .\" Copyright (c) 2002 Wasabi Systems, Inc.
 .\" All rights reserved.
@@ -52,7 +52,7 @@
 Client interface routines:
 .Pp
 .Ft int
-.Fn "dmover_session_create" "const char *, struct dmover_session **"
+.Fn "dmover_session_create" "const char *" "struct dmover_session **"
 .Ft void
 .Fn "dmover_session_destroy" "struct dmover_session *"
 .Ft "struct dmover_request *"
@@ -94,7 +94,7 @@
 facility identifies back-ends which are capable of handling the requested
 function.  When a request is scheduled for processing, the
 .Nm dmover
-scheduler will indentify the best back-end to process the request from
+scheduler will identify the best back-end to process the request from
 the list of candidate back-ends, in an effort to provide load balancing,
 while considering the relative performance of each back-end.
 .Pp
@@ -102,7 +102,7 @@
 .Nm dmover
 function always has one output region.  A function may have zero or more
 input regions, or may use an immediate value as an input.  For functions
-which use input regions, the lenghts of each input region and the output
+which use input regions, the lengths of each input region and the output
 region must be the same.  All
 .Nm dmover
 functions with the same name will have the same number of and type inputs.
@@ -195,7 +195,9 @@
 .It void (*dreq_callback)(struct dmover_request *)
 This is a pointer to an optional call-back function provided by the
 client.  If provided, the call-back is invoked when the request is
-complete.  This field must be NULL if
+complete.  This field must be
+.Dv NULL
+if
 .Em DMOVER_REQ_WAIT
 is set in
 .Em dreq_flags .
@@ -328,12 +330,15 @@
 request structure and associates it with the specified session.
 If the
 .Fa inbuf
-argument is non-NULL,
+argument is not
+.Dv NULL ,
 .Fa inbuf
 is used as the array of input buffer descriptors in the request.
 Otherwise, if
 .Fa inbuf
-is NULL and the
+is
+.Dv NULL
+and the
 .Nm dmover
 function requires input buffers, the input buffer descriptors will be
 allocated automatically using
@@ -341,7 +346,9 @@
 .Pp
 If the request structure or input buffer descriptors cannot be allocated,
 .Fn dmover_request_alloc
-return NULL to indicate failure.
+return
+.Dv NULL
+to indicate failure.
 .It void Fn dmover_request_free "struct dmover_request *req"
 .Pp
 The
@@ -351,7 +358,7 @@
 request structure.  If the
 .Nm dmover
 function requires input buffers, and the input buffer descriptors
-assiciated with
+associated with
 .Fa req
 were allocated by
 .Fn dmover_request_alloc ,
@@ -421,7 +428,7 @@
 .It const char *dmb_name
 This is the name of the back-end.
 .It u_int dmb_speed
-This is an estimate of the number of kilobytes/sec. that the
+This is an estimate of the number of kilobytes/second that the
 back-end can process.
 .It void *dmb_cookie
 This is a pointer to back-end private data.
@@ -513,7 +520,7 @@
 .Em IPL_SOFTCLOCK ,
 .Em IPL_SOFTNET ,
 or in non-interrupt context.
-.Ss EXAMPLE USAGE
+.Sh EXAMPLES
 The following is an example of a client using
 .Nm dmover
 to zero-fill a region of memory.  In this example, the CPU will be
@@ -555,8 +562,8 @@
 }
 .Ed
 .Sh SEE ALSO
-.Xr dmoverio 4 ,
-.Xr queue 3
+.Xr queue 3 ,
+.Xr dmoverio 4
 .Sh HISTORY
 The
 .Nm dmover



Home | Main Index | Thread Index | Old Index