Ultrix-3.1/src/ucb/renice.c

Compare this file to the similar file:
Show the results in this format:


/**********************************************************************
 *   Copyright (c) Digital Equipment Corporation 1984, 1985, 1986.    *
 *   All Rights Reserved. 					      *
 *   Reference "/usr/src/COPYRIGHT" for applicable restrictions.      *
 **********************************************************************/

#ifndef lint
static char Sccsid[] = "@(#)renice.c	3.0	4/22/86";
#endif
/*
 * Based on "@(#)renice.c	1.4	11/22/80"
 */
/*
 *	renice:	change a process's nice value.  Root can change the value
 *		to anything, others can only increase the current nice.
 */

int	atoi ();

main (ac, av)
register	ac;
register	char	**av;
{
	register	i;

	if (ac < 3)	{
		printf ("Usage:  renice newnice pid [pid2 ... pidn]\n");
		exit(1);
		}

	for(i = 2; i < ac; i++)
		if (renice (atoi (av [i]), atoi (av [1])) == -1)
			perror(av[i]);
}