2013-06-09 13:20:55 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2013-06-11 18:33:52 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
2013-06-09 13:20:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2014-01-28 17:10:09 +00:00
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/time.h>
|
2013-06-11 18:33:52 +00:00
|
|
|
#include <unistd.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2013-06-09 13:20:55 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
2014-04-22 12:13:51 +00:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2015-01-30 15:52:44 +00:00
|
|
|
eprintf("usage: %s [-n inc] cmd [arg ...]\n", argv0);
|
2014-04-22 12:13:51 +00:00
|
|
|
}
|
2013-06-09 13:20:55 +00:00
|
|
|
|
|
|
|
int
|
2014-04-18 10:51:18 +00:00
|
|
|
main(int argc, char *argv[])
|
2013-06-09 13:20:55 +00:00
|
|
|
{
|
2013-06-11 18:33:52 +00:00
|
|
|
long val = 10;
|
2014-01-28 17:10:09 +00:00
|
|
|
int savederrno;
|
2013-06-09 13:20:55 +00:00
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
case 'n':
|
2015-01-30 15:52:44 +00:00
|
|
|
val = estrtonum(EARGF(usage()), PRIO_MIN, PRIO_MAX);
|
2013-06-09 13:20:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-10-07 16:13:01 +00:00
|
|
|
usage();
|
2013-06-11 18:33:52 +00:00
|
|
|
break;
|
2013-06-09 13:20:55 +00:00
|
|
|
} ARGEND;
|
|
|
|
|
2014-11-13 17:29:30 +00:00
|
|
|
if (argc == 0)
|
2013-10-07 16:13:01 +00:00
|
|
|
usage();
|
2013-06-09 13:20:55 +00:00
|
|
|
|
2013-06-11 18:33:52 +00:00
|
|
|
errno = 0;
|
2014-01-28 17:10:09 +00:00
|
|
|
val += getpriority(PRIO_PROCESS, 0);
|
|
|
|
if (errno != 0)
|
|
|
|
weprintf("getpriority:");
|
2014-11-17 15:01:43 +00:00
|
|
|
val = MAX(PRIO_MIN, MIN(val, PRIO_MAX));
|
2014-01-28 17:10:09 +00:00
|
|
|
if (setpriority(PRIO_PROCESS, 0, val) != 0)
|
|
|
|
weprintf("setpriority:");
|
2013-06-09 13:20:55 +00:00
|
|
|
|
2013-06-11 18:33:52 +00:00
|
|
|
/* POSIX specifies the nice failure still invokes the command */
|
|
|
|
execvp(argv[0], argv);
|
2014-01-28 17:10:09 +00:00
|
|
|
savederrno = errno;
|
|
|
|
weprintf("execvp %s:", argv[0]);
|
|
|
|
return (savederrno == ENOENT)? 127 : 126;
|
2013-06-09 13:20:55 +00:00
|
|
|
}
|