musl-tcc/src/sched/sched_setscheduler.c

9 lines
174 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <sched.h>
#include <errno.h>
#include "syscall.h"
int sched_setscheduler(pid_t pid, int sched, const struct sched_param *param)
{
return __syscall_ret(-ENOSYS);
}