91319103fd3038fb5502852a4acfc5b38a25d7b1
[platform/upstream/busybox.git] / procps / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Process Utilities"
7
8 config FREE
9         bool "free"
10         default n
11         help
12           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.
15
16 config FUSER
17         bool "fuser"
18         default n
19         help
20           fuser lists all PIDs (Process IDs) that currently have a given
21           file open.  fuser can also list all PIDs that have a given network
22           (TCP or UDP) port open.
23
24 config KILL
25         bool "kill"
26         default n
27         help
28           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.
31
32 config KILLALL
33         bool "killall"
34         default n
35         depends on KILL
36         help
37           killall sends a signal to all processes running any of the
38           specified commands.  If no signal name is specified, SIGTERM is
39           sent.
40
41 config KILLALL5
42         bool "killall5"
43         default n
44         depends on KILL
45
46 config PIDOF
47         bool "pidof"
48         default n
49         help
50           Pidof finds the process id's (pids) of the named programs. It prints
51           those id's on the standard output.
52
53 config FEATURE_PIDOF_SINGLE
54         bool "Enable argument for single shot (-s)"
55         default n
56         depends on PIDOF
57         help
58           Support argument '-s' for returning only the first pid found.
59
60 config FEATURE_PIDOF_OMIT
61         bool "Enable argument for omitting pids (-o)"
62         default n
63         depends on PIDOF
64         help
65           Support argument '-o' for omitting the given pids in output.
66           The special pid %PPID can be used to name the parent process
67           of the pidof, in other words the calling shell or shell script.
68
69 config PS
70         bool "ps"
71         default n
72         help
73           ps gives a snapshot of the current processes.
74
75 config FEATURE_PS_WIDE
76         bool "Enable argument for wide output (-w)"
77         default n
78         depends on PS
79         help
80           Support argument 'w' for wide output.
81           If given once, 132 chars are printed and given more than
82           one, the length is unlimited.
83
84 config RENICE
85         bool "renice"
86         default n
87         help
88           Renice alters the scheduling priority of one or more running
89           processes.
90
91 config BB_SYSCTL
92         bool "sysctl"
93         default n
94         help
95           Configure kernel parameters at runtime.
96
97 config TOP
98         bool "top"
99         default n
100         help
101           The top program provides a dynamic real-time view of a running
102           system.
103
104 config FEATURE_TOP_CPU_USAGE_PERCENTAGE
105         bool "Show CPU per-process usage percentage (adds 2k bytes)"
106         default y
107         depends on TOP
108         help
109           Make top display CPU usage for each process.
110
111 config FEATURE_TOP_CPU_GLOBAL_PERCENTS
112         bool "Show CPU global usage percentage (adds 0.5k bytes)"
113         default y
114         depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
115         help
116           Makes top display "CPU: NN% usr NN% sys..." line.
117
118 config FEATURE_TOP_DECIMALS
119         bool "Show 1/10th of a percent in CPU/mem statistics (adds 0.5k bytes)"
120         default n
121         depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
122         help
123           Show 1/10th of a percent in CPU/mem statistics.
124
125 config UPTIME
126         bool "uptime"
127         default n
128         help
129           uptime gives a one line display of the current time, how long
130           the system has been running, how many users are currently logged
131           on, and the system load averages for the past 1, 5, and 15 minutes.
132
133
134 endmenu
135