Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/proc.refentry @ 1053:b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
capitalization and quotes (") to show what was commands, files and just
text. With today's formatting, this is not necessary, so everywhere
capitalization was used to show a command the <command> element is now
used instead, and everywhere a file is mentioned the <filename> element is used.
author | roug |
---|---|
date | Thu, 20 Mar 2003 20:19:53 +0000 |
parents | 7aa7d982aa8e |
children | 4dae346c4969 |
rev | line source |
---|---|
1012 | 1 <refentry id="proc"> |
2 <refnamediv> | |
3 <refname>PROC</refname> | |
4 <refpurpose>Display Processes</refpurpose> | |
5 </refnamediv> | |
6 | |
7 <refsynopsisdiv> | |
8 <cmdsynopsis> | |
9 <command>PROC</command> | |
10 </cmdsynopsis> | |
11 </refsynopsisdiv> | |
12 | |
13 <refsect1><title>Description</title> | |
14 <para> | |
15 Displays a list of processes running on the system. Normally only | |
16 processes having the user's ID are listed, but if the "-e" option is | |
17 given, processes of all users are listed. The display is a | |
18 "snapshot" taken at the instant the command is executed: processes | |
19 can switch states rapidly, usually many times per second. | |
20 </para> | |
21 <para> | |
1053
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
1012
diff
changeset
|
22 <command>Proc</command> shows the user and process ID numbers, priority, state |
1012 | 23 (process status), memory size (in 256 byte pages), primary program |
24 module, and standard input path. | |
25 </para> | |
26 <para> | |
27 For more information see: 5.1, 5.2, 5.3 | |
28 </para> | |
29 </refsect1> | |
30 <refsect1><title>Examples</title> | |
31 <para> | |
32 Level One Example: | |
33 </para> | |
34 <screen> | |
35 User# Id pty state Mem Primary module | |
36 ---- --- --- -------- --- -------------- | |
37 0 2 0 active 2 Shell | |
38 0 1 0 waiting 1 SysGo | |
39 1 3 1 waiting 2 Tsmon | |
40 1 4 1 waiting 4 Shell | |
41 1 5 1 active 64 Basic09 | |
42 </screen> | |
43 </refsect1> | |
44 </refentry> | |
45 |