diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-21 21:32:12 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-21 21:32:12 +0000 |
commit | 06f3ac5701f90981db22420811ccef501e8997c1 (patch) | |
tree | ad4f94b99f7e82e9e4a1245c271ef4962b16e764 /usage.c | |
parent | 6c969cb743c326616fe95199199512c107d3b729 (diff) | |
download | busybox-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.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -859,6 +859,18 @@ const char reboot_usage[] = | |||
859 | ; | 859 | ; |
860 | #endif | 860 | #endif |
861 | 861 | ||
862 | |||
863 | #if defined BB_RENICE | ||
864 | const 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 |
863 | const char rm_usage[] = | 875 | const char rm_usage[] = |
864 | "rm [OPTION]... FILE...\n" | 876 | "rm [OPTION]... FILE...\n" |