1 .\" Copyright (c) 1992, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software developed by the Computer Systems
5 .\" Engineering group at Lawrence Berkeley Laboratory under DARPA contract
6 .\" BG 91-66 and contributed to Berkeley.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)kvm_getprocs.3 8.1 (Berkeley) 6/4/93
35 .Dd September 27, 2003
42 .Nd access user process state
51 .Ft struct kinfo_proc *
52 .Fn kvm_getprocs "kvm_t *kd" "int op" "int arg" "int *cnt"
54 .Fn kvm_getargv "kvm_t *kd" "const struct kinfo_proc *p" "int nchr"
56 .Fn kvm_getenvv "kvm_t *kd" "const struct kinfo_proc *p" "int nchr"
60 function returns a (sub-)set of active processes in the kernel indicated by
66 arguments constitute a predicate which limits the set of processes
70 describes the filtering predicate as follows:
72 .Bl -tag -width 20n -offset indent -compact
74 all processes and kernel visible threads
76 all processes, without threads
78 processes with process ID
81 processes with process group
83 .It Dv KERN_PROC_SESSION
84 processes with session
90 processes with effective user ID
93 processes with real user ID
95 .It Dv KERN_PROC_INC_THREAD
96 modifier to return all kernel visible threads when filtering
97 by process ID, process group, TTY, user ID, and real user ID
100 The number of processes found is returned in the reference parameter
102 The processes are returned as a contiguous array of kinfo_proc structures.
103 This memory is locally allocated, and subsequent calls to
107 will overwrite this storage.
111 function returns a null-terminated argument vector that corresponds to the
112 command line arguments passed to process indicated by
114 Most likely, these arguments correspond to the values passed to
117 This information is, however,
118 deliberately under control of the process itself.
119 Note that the original command name can be found, unaltered,
120 in the p_comm field of the process structure returned by
125 argument indicates the maximum number of characters, including null bytes,
126 to use in building the strings.
127 If this amount is exceeded, the string
128 causing the overflow is truncated and the partial result is returned.
129 This is handy for programs like
133 that print only a one line summary of a command and should not copy
134 out large amounts of text only to ignore it.
137 is zero, no limit is imposed and all argument strings are returned in
140 The memory allocated to the argv pointers and string storage
141 is owned by the kvm library.
146 calls will clobber this storage.
150 function is similar to
152 but returns the vector of environment strings.
154 also alterable by the process.
170 .Xr kvm_openfiles 3 ,
174 These routines do not belong in the kvm interface.
178 to function correctly,