diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-07 15:21:54 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-07 15:21:54 +0100 |
commit | d2b820b540ada43dfef8751328c158e342387304 (patch) | |
tree | 15b74e42976012e9c6a3f6d639d22c3eeec2f6ff | |
parent | ea351b97428f7dc921d5431ccac366201754fcef (diff) | |
download | busybox-w32-d2b820b540ada43dfef8751328c158e342387304.tar.gz busybox-w32-d2b820b540ada43dfef8751328c158e342387304.tar.bz2 busybox-w32-d2b820b540ada43dfef8751328c158e342387304.zip |
renice: tweak help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | procps/renice.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/procps/renice.c b/procps/renice.c index 77f400a1d..2b690e0ed 100644 --- a/procps/renice.c +++ b/procps/renice.c | |||
@@ -20,13 +20,14 @@ | |||
20 | */ | 20 | */ |
21 | 21 | ||
22 | //usage:#define renice_trivial_usage | 22 | //usage:#define renice_trivial_usage |
23 | //usage: "{{-n INCREMENT} | PRIORITY} [[-p | -g | -u] ID...]" | 23 | //usage: "[-n] PRIORITY [[-p | -g | -u] ID...]..." |
24 | //usage:#define renice_full_usage "\n\n" | 24 | //usage:#define renice_full_usage "\n\n" |
25 | //usage: "Change scheduling priority for a running process\n" | 25 | //usage: "Change scheduling priority of a running process\n" |
26 | //usage: "\n -n Adjust current nice value (smaller is faster)" | 26 | //usage: "\n -n Add PRIORITY to current nice value" |
27 | //usage: "\n -p Process id(s) (default)" | 27 | //usage: "\n Without -n, nice value is set to PRIORITY" |
28 | //usage: "\n -g Process group id(s)" | 28 | //usage: "\n -p Process ids (default)" |
29 | //usage: "\n -u Process user name(s) and/or id(s)" | 29 | //usage: "\n -g Process group ids" |
30 | //usage: "\n -u Process user names" | ||
30 | 31 | ||
31 | #include "libbb.h" | 32 | #include "libbb.h" |
32 | #include <sys/resource.h> | 33 | #include <sys/resource.h> |