1995-09-01 03:30:56 +04:00
|
|
|
/* $NetBSD: nice.c,v 1.9 1995/08/31 23:30:58 jtc Exp $ */
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
char copyright[] =
|
|
|
|
"@(#) Copyright (c) 1989 The Regents of the University of California.\n\
|
|
|
|
All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1995-09-01 03:30:56 +04:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)nice.c 5.4 (Berkeley) 6/1/90";
|
|
|
|
#endif
|
|
|
|
static char rcsid[] = "$NetBSD: nice.c,v 1.9 1995/08/31 23:30:58 jtc Exp $";
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
1993-12-02 22:52:01 +03:00
|
|
|
#include <sys/types.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <stdio.h>
|
1993-08-28 00:22:04 +04:00
|
|
|
#include <stdlib.h>
|
1993-07-13 02:04:01 +04:00
|
|
|
#include <string.h>
|
1993-11-19 23:07:13 +03:00
|
|
|
#include <locale.h>
|
1993-08-28 00:22:04 +04:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <err.h>
|
1993-08-28 02:30:10 +04:00
|
|
|
#include <unistd.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#define DEFNICE 10
|
|
|
|
|
1993-08-28 02:30:10 +04:00
|
|
|
static void usage();
|
|
|
|
|
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
1993-08-28 00:22:04 +04:00
|
|
|
int niceness = DEFNICE;
|
|
|
|
int c;
|
1993-07-13 02:04:01 +04:00
|
|
|
|
1993-11-19 23:07:13 +03:00
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
|
1993-08-28 00:22:04 +04:00
|
|
|
/* handle obsolete -number syntax */
|
|
|
|
if (argc > 1 && argv[1][0] == '-' && isdigit(argv[1][1])) {
|
|
|
|
niceness = atoi (argv[1] + 1);
|
|
|
|
argc--; argv++;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-08-28 00:22:04 +04:00
|
|
|
while ((c = getopt (argc, argv, "n:")) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 'n':
|
|
|
|
niceness = atoi (optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '?':
|
|
|
|
default:
|
1993-03-21 12:45:37 +03:00
|
|
|
usage();
|
1993-08-28 00:22:04 +04:00
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-08-28 00:22:04 +04:00
|
|
|
}
|
|
|
|
argc -= optind; argv += optind;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-08-28 00:22:04 +04:00
|
|
|
if (argc == 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
usage();
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
niceness += getpriority(PRIO_PROCESS, 0);
|
|
|
|
if (errno) {
|
1993-08-28 00:22:04 +04:00
|
|
|
err (1, "getpriority");
|
|
|
|
/* NOTREACHED */
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (setpriority(PRIO_PROCESS, 0, niceness)) {
|
1993-08-28 00:22:04 +04:00
|
|
|
warn ("setpriority");
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-11-10 23:01:20 +03:00
|
|
|
|
1993-08-28 00:22:04 +04:00
|
|
|
execvp(argv[0], &argv[0]);
|
1993-11-10 23:01:20 +03:00
|
|
|
err ((errno == ENOENT) ? 127 : 126, "%s", argv[0]);
|
|
|
|
/* NOTREACHED */
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-08-28 02:30:10 +04:00
|
|
|
static void
|
1993-03-21 12:45:37 +03:00
|
|
|
usage()
|
|
|
|
{
|
|
|
|
(void)fprintf(stderr,
|
1993-08-28 00:22:04 +04:00
|
|
|
"usage: nice [ -n increment ] utility [ argument ...]\n");
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(1);
|
|
|
|
}
|