sched_setscheduler.c 174 B

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