diff options
author | Rob Landley <rob@landley.net> | 2013-07-31 16:36:57 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-07-31 16:36:57 -0500 |
commit | 9c8047a9395e1ca043a0b76d666b66fe4db410b3 (patch) | |
tree | 10f2d5b024beb15d3f0702d7b01d081f32e94895 | |
parent | 9e89d47a29dbcc353004c968c0b5da05ff89c653 (diff) | |
download | toybox-9c8047a9395e1ca043a0b76d666b66fe4db410b3.tar.gz |
Move renice from pending to posix, default y, fix link to standard.
-rw-r--r-- | toys/posix/renice.c (renamed from toys/pending/renice.c) | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/toys/pending/renice.c b/toys/posix/renice.c index 6d0bdac1..8c206447 100644 --- a/toys/pending/renice.c +++ b/toys/posix/renice.c @@ -2,14 +2,13 @@ * * Copyright 2013 CE Strake <strake888 at gmail.com> * - * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/ - * See http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/cmdbehav.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/renice.html USE_RENICE(NEWTOY(renice, "<1gpun#|", TOYFLAG_BIN)) config RENICE bool "renice" - default n + default y help usage: renice [-gpu] -n increment ID ... */ |