github.com/afumu/libc@v0.0.6/musl/src/sched/sched_getparam.c (about) 1 #include <sched.h> 2 #include <errno.h> 3 #include "syscall.h" 4 5 int sched_getparam(pid_t pid, struct sched_param *param) 6 { 7 return __syscall_ret(-ENOSYS); 8 }