aboutsummaryrefslogtreecommitdiff
path: root/util-linux/ionice.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2020-12-18 04:12:51 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2020-12-18 04:12:51 +0100
commita2f18d950a1a94e22fec78ee2d57f5cd3542551a (patch)
tree0e2540425675187e037e09cd0bf59c1740e91b49 /util-linux/ionice.c
parent15733cb48e570716cad6ece2d752507ecd767131 (diff)
downloadbusybox-a2f18d950a1a94e22fec78ee2d57f5cd3542551a.tar.gz
help text tweaks
function old new delta packed_usage 33570 33502 -68 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/ionice.c')
-rw-r--r--util-linux/ionice.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/ionice.c b/util-linux/ionice.c
index 40c04d5e0..c8fb1a777 100644
--- a/util-linux/ionice.c
+++ b/util-linux/ionice.c
@@ -18,11 +18,11 @@
//kbuild:lib-$(CONFIG_IONICE) += ionice.o
//usage:#define ionice_trivial_usage
-//usage: "[-c 1-3] [-n 0-7] [-p PID] [PROG]"
+//usage: "[-c 1-3] [-n 0-7] [-p PID] [PROG ARGS]"
//usage:#define ionice_full_usage "\n\n"
//usage: "Change I/O priority and class\n"
-//usage: "\n -c Class. 1:realtime 2:best-effort 3:idle"
-//usage: "\n -n Priority"
+//usage: "\n -c N Class. 1:realtime 2:best-effort 3:idle"
+//usage: "\n -n N Priority"
#include <sys/syscall.h>
#include <asm/unistd.h>
@@ -61,7 +61,7 @@ int ionice_main(int argc UNUSED_PARAM, char **argv)
/* Defaults */
int ioclass = 0;
int pri = 0;
- int pid = 0; /* affect own porcess */
+ int pid = 0; /* affect own process */
int opt;
enum {
OPT_n = 1,