blob: 2183fab9a101355ce73dfd0dd6041d45c988a5c3 [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Process Utilities"
7
8config CONFIG_FREE
9 bool "free"
10 default n
11 help
Eric Andersene5642112003-07-14 19:37:08 +000012 free displays the total amount of free and used physical and swap
13 memory in the system, as well as the buffers used by the kernel.
14 The shared memory column should be ignored; it is obsolete.
Eric Andersenc9f20d92002-12-05 08:41:41 +000015
Rob Landleyaa872762005-10-28 13:05:12 +000016config CONFIG_FUSER
17 bool "fuser"
18 default n
19 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000020 fuser lists all PIDs (Process IDs) that currently have a given
Rob Landleyaa872762005-10-28 13:05:12 +000021 file open. fuser can also list all PIDs that have a given network
22 (TCP or UDP) port open.
23
Eric Andersen110ee232002-12-06 21:44:50 +000024config CONFIG_KILL
Eric Andersen110ee232002-12-06 21:44:50 +000025 bool "kill"
26 default n
Eric Andersen110ee232002-12-06 21:44:50 +000027 help
Eric Andersene5642112003-07-14 19:37:08 +000028 The command kill sends the specified signal to the specified
29 process or process group. If no signal is specified, the TERM
30 signal is sent.
Eric Andersenc9f20d92002-12-05 08:41:41 +000031
32config CONFIG_KILLALL
33 bool "killall"
34 default n
35 depends on CONFIG_KILL
36 help
Eric Andersene5642112003-07-14 19:37:08 +000037 killall sends a signal to all processes running any of the
38 specified commands. If no signal name is specified, SIGTERM is
39 sent.
Eric Andersenc9f20d92002-12-05 08:41:41 +000040
41config CONFIG_PIDOF
42 bool "pidof"
43 default n
44 help
Eric Andersene5642112003-07-14 19:37:08 +000045 Pidof finds the process id's (pids) of the named programs. It prints
46 those id's on the standard output.
Eric Andersenc9f20d92002-12-05 08:41:41 +000047
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000048config CONFIG_FEATURE_PIDOF_SINGLE
Rob Landley2ec922e2006-04-13 23:22:16 +000049 bool "Enable argument for single shot (-s)"
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000050 default n
51 depends on CONFIG_PIDOF
52 help
53 Support argument '-s' for returning only the first pid found.
54
55config CONFIG_FEATURE_PIDOF_OMIT
Rob Landley2ec922e2006-04-13 23:22:16 +000056 bool "Enable argument for omitting pids (-o)"
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000057 default n
58 depends on CONFIG_PIDOF
59 help
60 Support argument '-o' for omitting the given pids in output.
61 The special pid %PPID can be used to name the parent process
62 of the pidof, in other words the calling shell or shell script.
63
Eric Andersenc9f20d92002-12-05 08:41:41 +000064config CONFIG_PS
65 bool "ps"
66 default n
67 help
Eric Andersene5642112003-07-14 19:37:08 +000068 ps gives a snapshot of the current processes.
Eric Andersenc9f20d92002-12-05 08:41:41 +000069
Bernhard Reutner-Fischer6d6a40c2005-10-04 14:31:18 +000070config CONFIG_FEATURE_PS_WIDE
Rob Landley2ec922e2006-04-13 23:22:16 +000071 bool "Enable argument for wide output (-w)"
Bernhard Reutner-Fischer6d6a40c2005-10-04 14:31:18 +000072 default n
73 depends on CONFIG_PS
74 help
75 Support argument 'w' for wide output.
76 If given once, 132 chars are printed and given more than
77 one, the length is unlimited.
78
Eric Andersenc9f20d92002-12-05 08:41:41 +000079config CONFIG_RENICE
80 bool "renice"
81 default n
82 help
Eric Andersene5642112003-07-14 19:37:08 +000083 Renice alters the scheduling priority of one or more running
84 processes.
Eric Andersenc9f20d92002-12-05 08:41:41 +000085
Mike Frysingerd1c8ae52005-09-24 23:13:22 +000086config CONFIG_BB_SYSCTL
87 bool "sysctl"
88 default n
89 help
90 Configure kernel parameters at runtime.
91
Eric Andersenc9f20d92002-12-05 08:41:41 +000092config CONFIG_TOP
93 bool "top"
94 default n
95 help
Eric Andersene5642112003-07-14 19:37:08 +000096 The top program provides a dynamic real-time view of a running
97 system.
Eric Andersenc9f20d92002-12-05 08:41:41 +000098
"Vladimir N. Oleynik"f246dc72005-09-16 12:55:29 +000099config CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Rob Landley2ec922e2006-04-13 23:22:16 +0000100 bool "Support showing CPU usage percentage (add 2k bytes)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000101 default y
102 depends on CONFIG_TOP
103 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000104 Make top display CPU usage.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000105
106config CONFIG_UPTIME
107 bool "uptime"
108 default n
109 help
Eric Andersene5642112003-07-14 19:37:08 +0000110 uptime gives a one line display of the current time, how long
111 the system has been running, how many users are currently logged
112 on, and the system load averages for the past 1, 5, and 15 minutes.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000113
Rob Landleyaa872762005-10-28 13:05:12 +0000114
Eric Andersenc9f20d92002-12-05 08:41:41 +0000115endmenu
116