1 /* nice -- run a program with modified scheduling priority
2 Copyright (C) 1990-1999 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* David MacKenzie <djm@gnu.ai.mit.edu> */
26 #include <sys/types.h>
28 # include <sys/time.h>
29 # include <sys/resource.h>
33 #include "long-options.h"
36 /* The official name of this program (e.g., no `g' prefix). */
37 #define PROGRAM_NAME "nice"
39 #define AUTHORS "David MacKenzie"
42 # define GET_PRIORITY() nice (0)
44 # define GET_PRIORITY() getpriority (PRIO_PROCESS, 0)
47 static int isinteger
PARAMS ((char *s
));
49 /* The name this program was run with. */
52 static struct option
const longopts
[] =
54 {"adjustment", required_argument
, NULL
, 'n'},
62 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
66 printf (_("Usage: %s [OPTION]... [COMMAND [ARG]...]\n"), program_name
);
68 Run COMMAND with an adjusted scheduling priority.\n\
69 With no COMMAND, print the current scheduling priority. ADJUST is 10\n\
70 by default. Range goes from -20 (highest priority) to 19 (lowest).\n\
72 -ADJUST increment priority by ADJUST first\n\
73 -n, --adjustment=ADJUST same as -ADJUST\n\
74 --help display this help and exit\n\
75 --version output version information and exit\n"));
76 puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
82 main (int argc
, char **argv
)
87 int adjustment_given
= 0;
90 program_name
= argv
[0];
91 setlocale (LC_ALL
, "");
92 bindtextdomain (PACKAGE
, LOCALEDIR
);
95 parse_long_options (argc
, argv
, PROGRAM_NAME
, GNU_PACKAGE
, VERSION
,
98 for (i
= 1; i
< argc
; /* empty */)
102 if (s
[0] == '-' && s
[1] == '-' && ISDIGIT (s
[2]))
104 if (!isinteger (&s
[2]))
105 error (1, 0, _("invalid option `%s'"), s
);
108 /* FIXME: use xstrtol */
109 adjustment
= atoi (&s
[2]);
110 adjustment_given
= 1;
113 else if (s
[0] == '-' && (ISDIGIT (s
[1])
114 || (s
[1] == '+' && ISDIGIT (s
[2]))))
118 if (!isinteger (&s
[1]))
119 error (1, 0, _("invalid option `%s'"), s
);
122 /* FIXME: use xstrtol */
123 adjustment
= atoi (&s
[1]);
124 adjustment_given
= 1;
130 char **fake_argv
= argv
+ i
- 1;
132 /* Initialize getopt_long's internal state. */
135 if ((optc
= getopt_long (argc
- (i
- 1), fake_argv
, "+n:",
136 longopts
, NULL
)) != -1)
144 if (!isinteger (optarg
))
145 error (1, 0, _("invalid priority `%s'"), optarg
);
148 /* FIXME: use xstrtol */
149 adjustment
= atoi (optarg
);
150 adjustment_given
= 1;
163 adjustment
= -adjustment
;
164 if (!adjustment_given
)
169 if (adjustment_given
)
171 error (0, 0, _("a command must be given with an adjustment"));
174 /* No command given; print the priority. */
176 current_priority
= GET_PRIORITY ();
177 if (current_priority
== -1 && errno
!= 0)
178 error (1, errno
, _("cannot get priority"));
179 printf ("%d\n", current_priority
);
183 #ifndef NICE_PRIORITY
185 current_priority
= GET_PRIORITY ();
186 if (current_priority
== -1 && errno
!= 0)
187 error (1, errno
, _("cannot get priority"));
188 if (setpriority (PRIO_PROCESS
, 0, current_priority
+ adjustment
))
190 if (nice (adjustment
) == -1)
192 error (1, errno
, _("cannot set priority"));
194 execvp (argv
[i
], &argv
[i
]);
195 error (errno
== ENOENT
? 127 : 126, errno
, "%s", argv
[i
]);
198 /* Return nonzero if S represents a (possibly signed) decimal integer,
204 if (*s
== '-' || *s
== '+')