1 /* $NetBSD: renice.c,v 1.17 2007/12/15 19:44:52 perry Exp $ */
4 * Copyright (c) 1983, 1989, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
34 __COPYRIGHT("@(#) Copyright (c) 1983, 1989, 1993\
35 The Regents of the University of California. All rights reserved.");
39 /*static char sccsid[] = "from: @(#)renice.c 8.1 (Berkeley) 6/9/93";*/
40 __RCSID("$NetBSD: renice.c,v 1.17 2007/12/15 19:44:52 perry Exp $");
43 #include <sys/resource.h>
54 static int getnum(const char *, const char *, int *);
55 static int donice(int, id_t
, int, int);
56 static void usage(void) __dead
;
59 * Change the priority (nice) of processes
60 * or groups of processes which are already
64 main(int argc
, char **argv
)
66 int which
= PRIO_PROCESS
;
67 int prio
, errs
= 0, incr
= 0;
73 if (strcmp(*argv
, "-n") == 0) {
79 if (getnum("priority", *argv
, &prio
))
82 for (; argc
> 0; argc
--, argv
++) {
83 if (strcmp(*argv
, "-g") == 0) {
87 if (strcmp(*argv
, "-u") == 0) {
91 if (strcmp(*argv
, "-p") == 0) {
95 if (which
== PRIO_USER
) {
96 struct passwd
*pwd
= getpwnam(*argv
);
99 warnx("%s: unknown user", *argv
);
103 who
= (id_t
)pwd
->pw_uid
;
106 if (getnum("pid", *argv
, &twho
)) {
111 warnx("%s: bad value", *argv
);
117 errs
+= donice(which
, who
, prio
, incr
);
119 return errs
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
;
123 getnum(const char *com
, const char *str
, int *val
)
129 v
= strtol(str
, &ep
, 0);
132 warnx("Bad %s argument: %s", com
, str
);
135 if ((v
== LONG_MIN
|| v
== LONG_MAX
) && errno
== ERANGE
) {
136 warn("Invalid %s argument: %s", com
, str
);
145 donice(int which
, id_t who
, int prio
, int incr
)
150 if ((oldprio
= getpriority(which
, who
)) == -1 && errno
!= 0) {
151 warn("%d: getpriority", who
);
156 prio
= oldprio
+ prio
;
163 if (setpriority(which
, who
, prio
) == -1) {
164 warn("%d: setpriority", who
);
167 (void)printf("%d: old priority %d, new priority %d\n",
176 (void)fprintf(stderr
, "Usage: %s [<priority> | -n <incr>] ",
178 (void)fprintf(stderr
, "[[-p] <pids>...] [-g <pgrp>...] ");
179 (void)fprintf(stderr
, "[-u <user>...]\n");