sched_getparam.c 151 B

1234567
  1. #include <sched.h>
  2. #include "syscall.h"
  3. int sched_getparam(pid_t pid, struct sched_param *param)
  4. {
  5. return syscall(SYS_sched_getparam, pid, param);
  6. }