195806606bffc3cc30d0f86aec711fb7b004a83e
[musl] / src / sched / sched_setscheduler.c
1 #include <sched.h>
2 #include "syscall.h"
3
4 int sched_setscheduler(pid_t pid, int sched, const struct sched_param *param)
5 {
6         static const struct sched_param def;
7         return syscall(SYS_sched_setscheduler, pid, 0, &def);
8 }