aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-12-18 02:59:09 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-12-18 02:59:09 +0100
commit96c8a6b5eade530f28ef73f72f7d188f71bbb1ec (patch)
tree888084971182da49254e79e550a86d30e3654401 /miscutils
parentb2fa0b6219bc8f0e37ea68fc036857a4714fa175 (diff)
downloadbusybox-96c8a6b5eade530f28ef73f72f7d188f71bbb1ec.tar.gz
chrt: correct opt_complementary. Closes bug 2977
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/chrt.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/miscutils/chrt.c b/miscutils/chrt.c
index c40277b39..4477d084c 100644
--- a/miscutils/chrt.c
+++ b/miscutils/chrt.c
@@ -54,7 +54,7 @@ int chrt_main(int argc UNUSED_PARAM, char **argv)
int policy = SCHED_RR;
/* at least 1 arg; only one policy accepted */
- opt_complementary = "-1:r--fo:f--ro:r--fo";
+ opt_complementary = "-1:r--fo:f--ro:o--rf";
opt = getopt32(argv, "+mprfo");
if (opt & OPT_r)
policy = SCHED_RR;
@@ -90,13 +90,13 @@ int chrt_main(int argc UNUSED_PARAM, char **argv)
print_rt_info:
pol = sched_getscheduler(pid);
if (pol < 0)
- bb_perror_msg_and_die("can't %cet pid %d's policy", 'g', pid);
+ bb_perror_msg_and_die("can't %cet pid %d's policy", 'g', (int)pid);
printf("pid %d's %s scheduling policy: %s\n",
pid, current_new, policies[pol].name);
if (sched_getparam(pid, &sp))
- bb_perror_msg_and_die("can't get pid %d's attributes", pid);
+ bb_perror_msg_and_die("can't get pid %d's attributes", (int)pid);
printf("pid %d's %s scheduling priority: %d\n",
- pid, current_new, sp.sched_priority);
+ (int)pid, current_new, sp.sched_priority);
if (!*argv) {
/* Either it was just "-p <pid>",
* or it was "-p <priority> <pid>" and we came here
@@ -115,7 +115,7 @@ int chrt_main(int argc UNUSED_PARAM, char **argv)
sp.sched_priority = xstrtou_range(priority, 0, policy != SCHED_OTHER ? 1 : 0, 99);
if (sched_setscheduler(pid, policy, &sp) < 0)
- bb_perror_msg_and_die("can't %cet pid %d's policy", 's', pid);
+ bb_perror_msg_and_die("can't %cet pid %d's policy", 's', (int)pid);
if (!argv[0]) /* "-p <priority> <pid> [...]" */
goto print_rt_info;