mirror of
https://github.com/fluencelabs/musl
synced 2025-05-20 19:21:34 +00:00
10 lines
180 B
C
10 lines
180 B
C
#include <sys/resource.h>
|
|
#include "syscall.h"
|
|
|
|
int getpriority(int which, id_t who)
|
|
{
|
|
int ret = syscall(SYS_getpriority, which, who);
|
|
if (ret < 0) return ret;
|
|
return 20-ret;
|
|
}
|