1 /* nice -- run a program with modified scheduling priority
2 Copyright (C) 1990-2001 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>
34 #include "long-options.h"
38 /* The official name of this program (e.g., no `g' prefix). */
39 #define PROGRAM_NAME "nice"
41 #define AUTHORS "David MacKenzie"
44 # define GET_PRIORITY() nice (0)
46 # define GET_PRIORITY() getpriority (PRIO_PROCESS, 0)
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\
75 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
76 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
77 puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
83 main (int argc
, char **argv
)
86 long int adjustment
= 0;
88 int adjustment_given
= 0;
91 program_name
= argv
[0];
92 setlocale (LC_ALL
, "");
93 bindtextdomain (PACKAGE
, LOCALEDIR
);
96 atexit (close_stdout
);
98 parse_long_options (argc
, argv
, PROGRAM_NAME
, GNU_PACKAGE
, VERSION
,
101 for (i
= 1; i
< argc
; /* empty */)
105 if (s
[0] == '-' && s
[1] == '-' && ISDIGIT (s
[2]))
107 if (xstrtol (&s
[2], NULL
, 10, &adjustment
, "") != LONGINT_OK
)
108 error (1, 0, _("invalid option `%s'"), s
);
111 adjustment_given
= 1;
114 else if (s
[0] == '-' && (ISDIGIT (s
[1])
115 || (s
[1] == '+' && ISDIGIT (s
[2]))))
119 if (xstrtol (&s
[1], NULL
, 10, &adjustment
, "") != LONGINT_OK
)
120 error (1, 0, _("invalid option `%s'"), s
);
123 adjustment_given
= 1;
129 char **fake_argv
= argv
+ i
- 1;
131 /* Initialize getopt_long's internal state. */
134 if ((optc
= getopt_long (argc
- (i
- 1), fake_argv
, "+n:",
135 longopts
, NULL
)) != -1)
143 if (xstrtol (optarg
, NULL
, 10, &adjustment
, "")
145 error (1, 0, _("invalid priority `%s'"), optarg
);
148 adjustment_given
= 1;
161 adjustment
= -adjustment
;
162 if (!adjustment_given
)
167 if (adjustment_given
)
169 error (0, 0, _("a command must be given with an adjustment"));
172 /* No command given; print the priority. */
174 current_priority
= GET_PRIORITY ();
175 if (current_priority
== -1 && errno
!= 0)
176 error (1, errno
, _("cannot get priority"));
177 printf ("%d\n", current_priority
);
181 #ifndef NICE_PRIORITY
183 current_priority
= GET_PRIORITY ();
184 if (current_priority
== -1 && errno
!= 0)
185 error (1, errno
, _("cannot get priority"));
186 if (setpriority (PRIO_PROCESS
, 0, current_priority
+ adjustment
))
188 if (nice (adjustment
) == -1)
190 error (1, errno
, _("cannot set priority"));
192 execvp (argv
[i
], &argv
[i
]);
195 int exit_status
= (errno
== ENOENT
? 127 : 126);
196 error (0, errno
, "%s", argv
[i
]);