nice: code shrink
[oweals/busybox.git] / coreutils / nice.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * nice implementation for busybox
4  *
5  * Copyright (C) 2005  Manuel Novoa III  <mjn3@codepoet.org>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8  */
9 //config:config NICE
10 //config:       bool "nice (1.8 kb)"
11 //config:       default y
12 //config:       help
13 //config:       nice runs a program with modified scheduling priority.
14
15 //applet:IF_NICE(APPLET_NOEXEC(nice, nice, BB_DIR_BIN, BB_SUID_DROP, nice))
16
17 //kbuild:lib-$(CONFIG_NICE) += nice.o
18
19 //usage:#define nice_trivial_usage
20 //usage:       "[-n ADJUST] [PROG ARGS]"
21 //usage:#define nice_full_usage "\n\n"
22 //usage:       "Change scheduling priority, run PROG\n"
23 //usage:     "\n        -n ADJUST       Adjust priority by ADJUST"
24
25 #include <sys/resource.h>
26 #include "libbb.h"
27
28 int nice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
29 int nice_main(int argc UNUSED_PARAM, char **argv)
30 {
31         int old_priority, adjustment;
32
33         old_priority = getpriority(PRIO_PROCESS, 0);
34
35         if (!*++argv) { /* No args, so (GNU) output current nice value. */
36                 printf("%d\n", old_priority);
37                 fflush_stdout_and_exit(EXIT_SUCCESS);
38         }
39
40         adjustment = 10;  /* Set default adjustment. */
41
42         if (argv[0][0] == '-') {
43                 char *nnn = argv[0] + 1;
44                 if (nnn[0] == 'n') { /* -n */
45                         nnn += 1;
46                         if (!nnn[0]) { /* "-n NNN" */
47                                 nnn = *++argv;
48                         }
49                         /* else: "-nNNN" (w/o space) */
50                 }
51                 /* else: "-NNN" (NNN may be negative) - same as "-n NNN" */
52
53                 if (!nnn || !argv[1]) {  /* Missing priority or PROG! */
54                         bb_show_usage();
55                 }
56                 adjustment = xatoi_range(nnn, INT_MIN/2, INT_MAX/2);
57                 argv++;
58         }
59
60         {  /* Set our priority. */
61                 int prio = old_priority + adjustment;
62
63                 if (setpriority(PRIO_PROCESS, 0, prio) < 0) {
64                         bb_perror_msg_and_die("setpriority(%d)", prio);
65                 }
66         }
67
68         BB_EXECVP_or_die(argv);
69 }