aboutsummaryrefslogtreecommitdiff
path: root/usage.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-07-21 21:32:12 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-07-21 21:32:12 +0000
commit06f3ac5701f90981db22420811ccef501e8997c1 (patch)
treead4f94b99f7e82e9e4a1245c271ef4962b16e764 /usage.c
parent6c969cb743c326616fe95199199512c107d3b729 (diff)
downloadbusybox-w32-06f3ac5701f90981db22420811ccef501e8997c1.tar.gz
busybox-w32-06f3ac5701f90981db22420811ccef501e8997c1.tar.bz2
busybox-w32-06f3ac5701f90981db22420811ccef501e8997c1.zip
Added 'renice' command, thanks to Dave Cinege <dcinege@psychosis.com>
-Erik git-svn-id: svn://busybox.net/trunk/busybox@897 69ca8d6d-28ef-0310-b511-8ec308f3f277
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"