sched_rr_get_interval.c 156 B

1234567
  1. #include <sched.h>
  2. #include "syscall.h"
  3. int sched_rr_get_interval(pid_t pid, struct timespec *ts)
  4. {
  5. return syscall(SYS_sched_rr_get_interval, pid, ts);
  6. }