[BACK]Return to nice.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / nice

Annotation of src/usr.bin/nice/nice.c, Revision 1.8

1.8     ! millert     1: /*     $OpenBSD: nice.c,v 1.7 2002/06/17 07:06:25 deraadt Exp $        */
1.1       deraadt     2: /*     $NetBSD: nice.c,v 1.9 1995/08/31 23:30:58 jtc Exp $     */
                      3:
                      4: /*
                      5:  * Copyright (c) 1989 The Regents of the University of California.
                      6:  * All rights reserved.
                      7:  *
                      8:  * Redistribution and use in source and binary forms, with or without
                      9:  * modification, are permitted provided that the following conditions
                     10:  * are met:
                     11:  * 1. Redistributions of source code must retain the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer.
                     13:  * 2. Redistributions in binary form must reproduce the above copyright
                     14:  *    notice, this list of conditions and the following disclaimer in the
                     15:  *    documentation and/or other materials provided with the distribution.
1.8     ! millert    16:  * 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    17:  *    may be used to endorse or promote products derived from this software
                     18:  *    without specific prior written permission.
                     19:  *
                     20:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     21:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     22:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     23:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     24:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     25:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     26:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     27:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     28:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     29:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     30:  * SUCH DAMAGE.
                     31:  */
                     32:
                     33: #ifndef lint
                     34: char copyright[] =
                     35: "@(#) Copyright (c) 1989 The Regents of the University of California.\n\
                     36:  All rights reserved.\n";
                     37: #endif /* not lint */
                     38:
                     39: #ifndef lint
                     40: #if 0
                     41: static char sccsid[] = "@(#)nice.c     5.4 (Berkeley) 6/1/90";
                     42: #endif
1.8     ! millert    43: static char rcsid[] = "$OpenBSD: nice.c,v 1.7 2002/06/17 07:06:25 deraadt Exp $";
1.1       deraadt    44: #endif /* not lint */
                     45:
                     46: #include <sys/time.h>
                     47: #include <sys/resource.h>
                     48: #include <stdio.h>
                     49: #include <stdlib.h>
                     50: #include <locale.h>
                     51: #include <ctype.h>
                     52: #include <errno.h>
                     53: #include <err.h>
                     54: #include <unistd.h>
                     55:
                     56: #define        DEFNICE 10
                     57:
1.6       millert    58: int    main(int, char **);
                     59: static void usage(void);
1.1       deraadt    60:
                     61: int
                     62: main(argc, argv)
                     63:        int argc;
                     64:        char **argv;
                     65: {
                     66:        int niceness = DEFNICE;
                     67:        int c;
                     68:
                     69:        setlocale(LC_ALL, "");
                     70:
1.7       deraadt    71:        /* handle obsolete -number syntax */
                     72:        if (argc > 1 && argv[1][0] == '-' && isdigit(argv[1][1])) {
                     73:                niceness = atoi(argv[1] + 1);
                     74:                argc--;
                     75:                argv++;
                     76:        }
1.1       deraadt    77:
                     78:        while ((c = getopt (argc, argv, "n:")) != -1) {
                     79:                switch (c) {
                     80:                case 'n':
1.7       deraadt    81:                        niceness = atoi(optarg);
1.1       deraadt    82:                        break;
                     83:
                     84:                case '?':
                     85:                default:
                     86:                        usage();
                     87:                        break;
                     88:                }
                     89:        }
                     90:        argc -= optind; argv += optind;
                     91:
                     92:        if (argc == 0)
                     93:                usage();
                     94:
                     95:        errno = 0;
                     96:        niceness += getpriority(PRIO_PROCESS, 0);
                     97:        if (errno) {
1.7       deraadt    98:                err(1, "getpriority");
1.1       deraadt    99:                /* NOTREACHED */
                    100:        }
1.7       deraadt   101:        if (setpriority(PRIO_PROCESS, 0, niceness))
                    102:                warn("setpriority");
1.1       deraadt   103:
                    104:        execvp(argv[0], &argv[0]);
1.7       deraadt   105:        err((errno == ENOENT) ? 127 : 126, "%s", argv[0]);
1.1       deraadt   106:        /* NOTREACHED */
                    107: }
                    108:
                    109: static void
                    110: usage()
                    111: {
1.4       pvalchev  112:        extern char *__progname;
                    113:        fprintf(stderr, "usage: %s [ -n increment ] utility [ argument ...]\n",
                    114:            __progname);
1.1       deraadt   115:        exit(1);
                    116: }