Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
sched
/
sched_rr_get_interval.c
blob: 4b01028f5ddaf102fcc37d39e7a4a915069b72bf [
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
);
}