Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
sched
/
sched_rr_get_interval.c
blob: 765dfd35b849a5518492d50309573dfff2efe64d [
file
] [
log
] [
blame
]
#include
<sched.h>
#include
"syscall.h"
int
sched_rr_get_interval
(
pid_t
pid
,
struct
timespec
*
ts
)
{
return
syscall
(
SYS_sched_rr_get_interval
,
pid
,
ts
);
}