musl/src/sched/sched_getscheduler.c

8 lines
125 B
C
Raw Normal View History

#include <sched.h>
#include "syscall.h"
int sched_getscheduler(pid_t pid)
{
return syscall(SYS_sched_getscheduler, pid);
}