aboutsummaryrefslogtreecommitdiff
path: root/procps/top.c
diff options
context:
space:
mode:
Diffstat (limited to 'procps/top.c')
-rw-r--r--procps/top.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/procps/top.c b/procps/top.c
index f43cd9c2c..015d1ab74 100644
--- a/procps/top.c
+++ b/procps/top.c
@@ -53,63 +53,63 @@
53//config: bool "top (17 kb)" 53//config: bool "top (17 kb)"
54//config: default y 54//config: default y
55//config: help 55//config: help
56//config: The top program provides a dynamic real-time view of a running 56//config: The top program provides a dynamic real-time view of a running
57//config: system. 57//config: system.
58//config: 58//config:
59//config:config FEATURE_TOP_INTERACTIVE 59//config:config FEATURE_TOP_INTERACTIVE
60//config: bool "Accept keyboard commands" 60//config: bool "Accept keyboard commands"
61//config: default y 61//config: default y
62//config: depends on TOP 62//config: depends on TOP
63//config: help 63//config: help
64//config: Without this, top will only refresh display every 5 seconds. 64//config: Without this, top will only refresh display every 5 seconds.
65//config: No keyboard commands will work, only ^C to terminate. 65//config: No keyboard commands will work, only ^C to terminate.
66//config: 66//config:
67//config:config FEATURE_TOP_CPU_USAGE_PERCENTAGE 67//config:config FEATURE_TOP_CPU_USAGE_PERCENTAGE
68//config: bool "Show CPU per-process usage percentage" 68//config: bool "Show CPU per-process usage percentage"
69//config: default y 69//config: default y
70//config: depends on TOP 70//config: depends on TOP
71//config: help 71//config: help
72//config: Make top display CPU usage for each process. 72//config: Make top display CPU usage for each process.
73//config: This adds about 2k. 73//config: This adds about 2k.
74//config: 74//config:
75//config:config FEATURE_TOP_CPU_GLOBAL_PERCENTS 75//config:config FEATURE_TOP_CPU_GLOBAL_PERCENTS
76//config: bool "Show CPU global usage percentage" 76//config: bool "Show CPU global usage percentage"
77//config: default y 77//config: default y
78//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE 78//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
79//config: help 79//config: help
80//config: Makes top display "CPU: NN% usr NN% sys..." line. 80//config: Makes top display "CPU: NN% usr NN% sys..." line.
81//config: This adds about 0.5k. 81//config: This adds about 0.5k.
82//config: 82//config:
83//config:config FEATURE_TOP_SMP_CPU 83//config:config FEATURE_TOP_SMP_CPU
84//config: bool "SMP CPU usage display ('c' key)" 84//config: bool "SMP CPU usage display ('c' key)"
85//config: default y 85//config: default y
86//config: depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS 86//config: depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS
87//config: help 87//config: help
88//config: Allow 'c' key to switch between individual/cumulative CPU stats 88//config: Allow 'c' key to switch between individual/cumulative CPU stats
89//config: This adds about 0.5k. 89//config: This adds about 0.5k.
90//config: 90//config:
91//config:config FEATURE_TOP_DECIMALS 91//config:config FEATURE_TOP_DECIMALS
92//config: bool "Show 1/10th of a percent in CPU/mem statistics" 92//config: bool "Show 1/10th of a percent in CPU/mem statistics"
93//config: default y 93//config: default y
94//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE 94//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
95//config: help 95//config: help
96//config: Show 1/10th of a percent in CPU/mem statistics. 96//config: Show 1/10th of a percent in CPU/mem statistics.
97//config: This adds about 0.3k. 97//config: This adds about 0.3k.
98//config: 98//config:
99//config:config FEATURE_TOP_SMP_PROCESS 99//config:config FEATURE_TOP_SMP_PROCESS
100//config: bool "Show CPU process runs on ('j' field)" 100//config: bool "Show CPU process runs on ('j' field)"
101//config: default y 101//config: default y
102//config: depends on TOP 102//config: depends on TOP
103//config: help 103//config: help
104//config: Show CPU where process was last found running on. 104//config: Show CPU where process was last found running on.
105//config: This is the 'j' field. 105//config: This is the 'j' field.
106//config: 106//config:
107//config:config FEATURE_TOPMEM 107//config:config FEATURE_TOPMEM
108//config: bool "Topmem command ('s' key)" 108//config: bool "Topmem command ('s' key)"
109//config: default y 109//config: default y
110//config: depends on TOP 110//config: depends on TOP
111//config: help 111//config: help
112//config: Enable 's' in top (gives lots of memory info). 112//config: Enable 's' in top (gives lots of memory info).
113 113
114//applet:IF_TOP(APPLET(top, BB_DIR_USR_BIN, BB_SUID_DROP)) 114//applet:IF_TOP(APPLET(top, BB_DIR_USR_BIN, BB_SUID_DROP))
115 115