summaryrefslogtreecommitdiff
path: root/include/usage.h
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-03-09 16:56:38 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-03-09 16:56:38 +0000
commit71bc71a7dc2601b1d9beb73ee1f178da1733788e (patch)
tree0dba091508cc1a72f77a0c6eae2afed1d0d550aa /include/usage.h
parent339f5eb2e0676da591150015e157c38c4ab52a3e (diff)
downloadbusybox-w32-71bc71a7dc2601b1d9beb73ee1f178da1733788e.tar.gz
busybox-w32-71bc71a7dc2601b1d9beb73ee1f178da1733788e.tar.bz2
busybox-w32-71bc71a7dc2601b1d9beb73ee1f178da1733788e.zip
- add chrt applet.
text data bss dec hex filename 769 0 0 769 301 miscutils/chrt.o and could use some further shrinkage
Diffstat (limited to 'include/usage.h')
-rw-r--r--include/usage.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h
index d8faa4f12..4d1ecb8f5 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -382,6 +382,22 @@
382#define bbsh_full_usage \ 382#define bbsh_full_usage \
383 "The bbsh shell (command interpreter)" 383 "The bbsh shell (command interpreter)"
384 384
385#define chrt_trivial_usage \
386 "[OPTION]... [prio] [pid | command [arg]...]"
387#define chrt_full_usage \
388 "manipulate real-time attributes of a process" \
389 "\n\nOptions:\n" \
390 " -p operate on pid\n" \
391 " -r set scheduling policy to SCHED_RR\n" \
392 " -f set scheduling policy to SCHED_FIFO\n" \
393 " -o set scheduling policy to SCHED_OTHER\n" \
394 " -m show min and max priorities"
395
396#define chrt_example_usage \
397 "$ chrt -r 4 sleep 900 ; x=$!\n" \
398 "$ chrt -f -p 3 $x\n" \
399 "You need CAP_SYS_NICE privileges to set scheduling attributes of a process"
400
385#define cp_trivial_usage \ 401#define cp_trivial_usage \
386 "[OPTION]... SOURCE DEST" 402 "[OPTION]... SOURCE DEST"
387#define cp_full_usage \ 403#define cp_full_usage \