summaryrefslogtreecommitdiffstats
path: root/usr/klibc/nice.c
blob: e6e99ac9752cee9453be3af76066c71593d099ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * nice.c
 */

#include <unistd.h>
#include <sched.h>
#include <sys/resource.h>
#include <sys/syscall.h>

#ifndef __NR_nice

int nice(int inc)
{
	pid_t me = getpid();
	return setpriority(me, PRIO_PROCESS,
			   getpriority(me, PRIO_PROCESS) + inc);
}

#endif