summaryrefslogtreecommitdiff
path: root/usage.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-21 21:32:12 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-21 21:32:12 +0000
commitbf960f58e2fc56402cc5c3c090d90b706a4de5f2 (patch)
treead4f94b99f7e82e9e4a1245c271ef4962b16e764 /usage.c
parent7df345e1494e61ad94dd03f9a48f8e5b52a21d2b (diff)
downloadbusybox-w32-bf960f58e2fc56402cc5c3c090d90b706a4de5f2.tar.gz
busybox-w32-bf960f58e2fc56402cc5c3c090d90b706a4de5f2.tar.bz2
busybox-w32-bf960f58e2fc56402cc5c3c090d90b706a4de5f2.zip
Added 'renice' command, thanks to Dave Cinege <dcinege@psychosis.com>
-Erik
Diffstat (limited to 'usage.c')
-rw-r--r--usage.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/usage.c b/usage.c
index 1031f24bc..3f367f9b1 100644
--- a/usage.c
+++ b/usage.c
@@ -859,6 +859,18 @@ const char reboot_usage[] =
859 ; 859 ;
860#endif 860#endif
861 861
862
863#if defined BB_RENICE
864const char renice_usage[] =
865 "renice priority pid [pid ...]\n"
866#ifndef BB_FEATURE_TRIVIAL_HELP
867 "\nChanges priority of running processes. Allowed priorities range\n"
868 "from 20 (the process runs only when nothing else is running) to 0\n"
869 "(default priority) to -20 (almost nothing else ever gets to run).\n"
870#endif
871 ;
872#endif
873
862#if defined BB_RM 874#if defined BB_RM
863const char rm_usage[] = 875const char rm_usage[] =
864 "rm [OPTION]... FILE...\n" 876 "rm [OPTION]... FILE...\n"