summaryrefslogtreecommitdiff
path: root/klibc/klibc/nice.c
blob: 5a18de9091235cd4cee0d117070cbc737d6e82bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * 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