1 #include <errno.h>
2 #include <sched.h>
3 
sched_setparam(pid_t pid,const struct sched_param * param)4 int sched_setparam(pid_t pid, const struct sched_param* param) {
5     errno = ENOSYS;
6     return -1;
7 }
8