summaryrefslogtreecommitdiff
authorDenys Vlasenko <vda.linux@googlemail.com>2016-12-03 11:09:50 (GMT)
committer Denys Vlasenko <vda.linux@googlemail.com>2016-12-03 11:09:50 (GMT)
commit718e4fd564fa99eb17281b6a23aef21652f23af5 (patch)
treeee9e6cbb22cd2c5a2a218b29e2626207499d7bc2
parentcf2600c3661c11491a838ef29733583afb6ad968 (diff)
downloadbusybox-718e4fd564fa99eb17281b6a23aef21652f23af5.zip
busybox-718e4fd564fa99eb17281b6a23aef21652f23af5.tar.gz
busybox-718e4fd564fa99eb17281b6a23aef21652f23af5.tar.bz2
top: fix help text: with !TERMIOS, no keys are affected top output
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat
-rw-r--r--procps/top.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/procps/top.c b/procps/top.c
index c66cdb7..71207ba 100644
--- a/procps/top.c
+++ b/procps/top.c
@@ -1042,7 +1042,9 @@ static unsigned handle_input(unsigned scan_mask, unsigned interval)
//usage: "Provide a view of process activity in real time."
//usage: "\n""Read the status of all processes from /proc each SECONDS"
//usage: "\n""and display a screenful of them."
-//usage: "\n""Keys:"
+//usage: "\n"
+//usage: IF_FEATURE_USE_TERMIOS(
+//usage: "Keys:"
//usage: "\n"" N/M"
//usage: IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE("/P")
//usage: IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE("/T")
@@ -1062,6 +1064,7 @@ static unsigned handle_input(unsigned scan_mask, unsigned interval)
//usage: "\n"" Q,^C: exit"
//usage: "\n"
//usage: "\n""Options:"
+//usage: )
//usage: "\n"" -b Batch mode"
//usage: "\n"" -n N Exit after N iterations"
//usage: "\n"" -d N Delay between updates"