summaryrefslogtreecommitdiff
path: root/lib/libc/sched/sched_rr_get_interval.c
blob: a99f2a3dd6f223bda44f7226e4ed4f8863456ce7 (plain)
1
2
3
4
5
6
7
#include <sched.h>
#include <syscall.h>

int sched_rr_get_interval(pid_t pid, struct timespec *tp)
{
	return syscall(sched_rr_get_interval, pid, tp);
}