blob: 2fb26b2bc44be995b2558b6bdbf521cc4589b8bb [file] [log] [blame]
#include <sys/resource.h>
#include "syscall.h"
int getpriority(int which, id_t who)
{
int ret = syscall2(__NR_getpriority, which, who);
if (ret < 0) return ret;
return 20-ret;
}