1 2 3 4 5 6 7
#include <sys/resource.h> #include <syscall.h> int setpriority(int which, int who, int value) { return syscall(setpriority, which, who, value); }