1# 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 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 16config 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 24config 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 32config 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 41config KILLALL5 42 bool "killall5" 43 default n 44 depends on KILL 45 46config NMETER 47 bool "nmeter" 48 default n 49 help 50 Prints selected system stats continuously, one line per update. 51 52config PGREP 53 bool "pgrep" 54 default n 55 help 56 Look for processes by name. 57 58config PIDOF 59 bool "pidof" 60 default n 61 help 62 Pidof finds the process id's (pids) of the named programs. It prints 63 those id's on the standard output. 64 65config FEATURE_PIDOF_SINGLE 66 bool "Enable argument for single shot (-s)" 67 default n 68 depends on PIDOF 69 help 70 Support argument '-s' for returning only the first pid found. 71 72config FEATURE_PIDOF_OMIT 73 bool "Enable argument for omitting pids (-o)" 74 default n 75 depends on PIDOF 76 help 77 Support argument '-o' for omitting the given pids in output. 78 The special pid %PPID can be used to name the parent process 79 of the pidof, in other words the calling shell or shell script. 80 81config PKILL 82 bool "pkill" 83 default n 84 help 85 Send signals to processes by name. 86 87config PS 88 bool "ps" 89 default n 90 help 91 ps gives a snapshot of the current processes. 92 93config FEATURE_PS_WIDE 94 bool "Enable argument for wide output (-w)" 95 default n 96 depends on PS 97 help 98 Support argument 'w' for wide output. 99 If given once, 132 chars are printed and given more than 100 one, the length is unlimited. 101 102config FEATURE_PS_TIME 103 bool "Enable time and elapsed time output" 104 default n 105 depends on PS && DESKTOP 106 help 107 Support -o time and -o etime output specifiers. 108 109config FEATURE_PS_UNUSUAL_SYSTEMS 110 bool "Support Linux prior to 2.4.0 and non-ELF systems" 111 default n 112 depends on FEATURE_PS_TIME 113 help 114 Include support for measuring HZ on old kernels and non-ELF systems 115 (if you are on Linux 2.4.0+ and use ELF, you don't need this) 116 117config RENICE 118 bool "renice" 119 default n 120 help 121 Renice alters the scheduling priority of one or more running 122 processes. 123 124config BB_SYSCTL 125 bool "sysctl" 126 default n 127 help 128 Configure kernel parameters at runtime. 129 130config TOP 131 bool "top" 132 default n 133 help 134 The top program provides a dynamic real-time view of a running 135 system. 136 137config FEATURE_TOP_CPU_USAGE_PERCENTAGE 138 bool "Show CPU per-process usage percentage" 139 default y 140 depends on TOP 141 help 142 Make top display CPU usage for each process. 143 This adds about 2k. 144 145config FEATURE_TOP_CPU_GLOBAL_PERCENTS 146 bool "Show CPU global usage percentage" 147 default y 148 depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE 149 help 150 Makes top display "CPU: NN% usr NN% sys..." line. 151 This adds about 0.5k. 152 153config FEATURE_TOP_SMP_CPU 154 bool "SMP CPU usage display ('c' key)" 155 default n 156 depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS 157 help 158 Allow 'c' key to switch between individual/cumulative CPU stats 159 This adds about 0.5k. 160 161config FEATURE_TOP_DECIMALS 162 bool "Show 1/10th of a percent in CPU/mem statistics" 163 default n 164 depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE 165 help 166 Show 1/10th of a percent in CPU/mem statistics. 167 This adds about 0.3k. 168 169config FEATURE_TOP_SMP_PROCESS 170 bool "Show CPU process runs on ('j' field)" 171 default n 172 depends on TOP 173 help 174 Show CPU where process was last found running on. 175 This is the 'j' field. 176 177config FEATURE_TOPMEM 178 bool "Topmem command ('s' key)" 179 default n 180 depends on TOP 181 help 182 Enable 's' in top (gives lots of memory info). 183 184config UPTIME 185 bool "uptime" 186 default n 187 help 188 uptime gives a one line display of the current time, how long 189 the system has been running, how many users are currently logged 190 on, and the system load averages for the past 1, 5, and 15 minutes. 191 192config WATCH 193 bool "watch" 194 default n 195 help 196 watch is used to execute a program periodically, showing 197 output to the screen. 198 199 200endmenu 201