sched_setscheduler.c 216 B

12345678
  1. #include <sched.h>
  2. #include "syscall.h"
  3. int sched_setscheduler(pid_t pid, int sched, const struct sched_param *param)
  4. {
  5. static const struct sched_param def;
  6. return syscall(SYS_sched_setscheduler, pid, 0, &def);
  7. }