blob: f38db678d892c7c570e2f4226090922bda1d55c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <unistd.h>
#include <sys/resource.h>
#include "syscall.h"
int nice(int inc)
{
#ifdef __NR_nice
return syscall1(__NR_nice, inc);
#else
return setpriority(PRIO_PROCESS, 0, getpriority(PRIO_PROCESS, 0)+inc);
#endif
}
|