]>
git.saurik.com Git - apple/shell_cmds.git/blob - renice/renice.c
2 * Copyright (c) 1983, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static const char copyright
[] =
36 "@(#) Copyright (c) 1983, 1989, 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
42 static char sccsid
[] = "@(#)renice.c 8.1 (Berkeley) 6/9/93";
46 #include <sys/types.h>
48 #include <sys/resource.h>
58 static int donice(int, int, int, int);
59 static int getnum(const char *, const char *, int *);
60 static void usage(void);
63 * Change the priority (nice) of processes
64 * or groups of processes which are already
68 main(int argc
, char *argv
[])
71 int errs
, incr
, prio
, which
, who
;
85 /* incrementing priflag here ensures we only process
86 the single priority arg if it is the very first arg */
87 for (; argc
> 0; argc
--, argv
++, priflag
++) {
88 /* once we've seen -- , don't process anymore switches */
90 /* -n must immediately be followed by the incremental
92 if (strcmp(*argv
, "-n") == 0) {
95 if (getnum("priority", *argv
, &prio
))
99 if (strcmp(*argv
, "-g") == 0) {
103 if (strcmp(*argv
, "-u") == 0) {
107 if (strcmp(*argv
, "-p") == 0) {
108 which
= PRIO_PROCESS
;
111 if (strcmp(*argv
, "--") == 0) {
116 /* if very first switch/arg and we've made it to
117 here, this must be the priority */
118 if (getnum("priority", *argv
, &prio
)) {
124 if (which
== PRIO_USER
) {
125 if ((pwd
= getpwnam(*argv
)) != NULL
)
127 else if (getnum("uid", *argv
, &who
)) {
130 } else if (who
< 0) {
131 warnx("%s: bad value", *argv
);
136 if (getnum("pid", *argv
, &who
)) {
141 warnx("%s: bad value", *argv
);
146 errs
+= donice(which
, who
, prio
, incr
);
152 donice(int which
, int who
, int prio
, int incr
)
157 oldprio
= getpriority(which
, who
);
158 if (oldprio
== -1 && errno
) {
159 warn("%d: getpriority", who
);
163 prio
= oldprio
+ prio
;
168 if (setpriority(which
, who
, prio
) < 0) {
169 warn("%d: setpriority", who
);
176 getnum(const char *com
, const char *str
, int *val
)
182 v
= strtol(str
, &ep
, 10);
183 if (v
< INT_MIN
|| v
> INT_MAX
|| errno
== ERANGE
) {
184 warnx("%s argument %s is out of range.", com
, str
);
187 if (ep
== str
|| *ep
!= '\0' || errno
!= 0) {
188 warnx("Bad %s argument: %s.", com
, str
);
199 fprintf(stderr
, "%s\n%s\n",
200 "usage: renice priority [[-p] pid ...] [[-g] pgrp ...] [[-u] user ...]",
201 " renice -n increment [[-p] pid ...] [[-g] pgrp ...] [[-u] user ...]");