summaryrefslogtreecommitdiff
path: root/lib/libkvm/kvm_getprocs.3
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>1999-07-09 13:36:00 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>1999-07-09 13:36:00 +0000
commit078c2448197a826265f74828b3159d758f1f0ceb (patch)
treeef3b0d7b2b6fcf1328ac8953d9e2abf6431093ea /lib/libkvm/kvm_getprocs.3
parent3610cb2f5b1eeb5e599fcca418780b43c2f30b6d (diff)
- remove all trailing whitespace
* except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it...
Diffstat (limited to 'lib/libkvm/kvm_getprocs.3')
-rw-r--r--lib/libkvm/kvm_getprocs.320
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/libkvm/kvm_getprocs.3 b/lib/libkvm/kvm_getprocs.3
index b983d307133..3b6b2d07b39 100644
--- a/lib/libkvm/kvm_getprocs.3
+++ b/lib/libkvm/kvm_getprocs.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: kvm_getprocs.3,v 1.5 1999/07/02 21:13:04 aaron Exp $
+.\" $OpenBSD: kvm_getprocs.3,v 1.6 1999/07/09 13:35:25 aaron Exp $
.\" $NetBSD: kvm_getprocs.3,v 1.3 1996/05/20 16:58:03 mrg Exp $
.\"
.\" Copyright (c) 1992, 1993
@@ -44,7 +44,7 @@
.Sh NAME
.Nm kvm_getprocs ,
.Nm kvm_getargv ,
-.Nm kvm_getenvv
+.Nm kvm_getenvv
.Nd access user process state
.Sh SYNOPSIS
.Fd #include <kvm.h>
@@ -97,13 +97,13 @@ The number of processes found is returned in the reference parameter
.Fa cnt .
The processes are returned as a contiguous array of kinfo_proc structures.
This memory is locally allocated, and subsequent calls to
-.Fn kvm_getprocs
-and
+.Fn kvm_getprocs
+and
.Fn kvm_close
will overwrite this storage.
.Pp
.Fn kvm_getargv
-returns a null-terminated argument vector that corresponds to the
+returns a null-terminated argument vector that corresponds to the
command line arguments passed to process indicated by
.Fa p .
Most likely, these arguments correspond to the values passed to
@@ -116,7 +116,7 @@ in the
field of the process structure returned by
.Fn kvm_getprocs .
.Pp
-The
+The
.Fa nchr
argument indicates the maximum number of characters, including null bytes,
to use in building the strings. If this amount is exceeded, the string
@@ -129,13 +129,13 @@ that print only a one line summary of a command and should not copy
out large amounts of text only to ignore it.
If
.Fa nchr
-is zero, no limit is imposed and all argument strings are returned in
+is zero, no limit is imposed and all argument strings are returned in
their entirety.
.Pp
The memory allocated to the argv pointers and string storage
-is owned by the kvm library. Subsequent
-.Fn kvm_getprocs
-and
+is owned by the kvm library. Subsequent
+.Fn kvm_getprocs
+and
.Xr kvm_close 3
calls will clobber this storage.
.Pp