diff options
Diffstat (limited to 'procps/renice.c')
-rw-r--r-- | procps/renice.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/procps/renice.c b/procps/renice.c index 59194b5f4..067c8f75a 100644 --- a/procps/renice.c +++ b/procps/renice.c | |||
@@ -19,6 +19,16 @@ | |||
19 | * following IDs (if any). Multiple switches are allowed. | 19 | * following IDs (if any). Multiple switches are allowed. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | //usage:#define renice_trivial_usage | ||
23 | //usage: "{{-n INCREMENT} | PRIORITY} [[-p | -g | -u] ID...]" | ||
24 | //usage:#define renice_full_usage "\n\n" | ||
25 | //usage: "Change scheduling priority for a running process\n" | ||
26 | //usage: "\nOptions:" | ||
27 | //usage: "\n -n Adjust current nice value (smaller is faster)" | ||
28 | //usage: "\n -p Process id(s) (default)" | ||
29 | //usage: "\n -g Process group id(s)" | ||
30 | //usage: "\n -u Process user name(s) and/or id(s)" | ||
31 | |||
22 | #include "libbb.h" | 32 | #include "libbb.h" |
23 | #include <sys/resource.h> | 33 | #include <sys/resource.h> |
24 | 34 | ||