Function sched_rr_get_interval [src]
Prototype
pub fn sched_rr_get_interval(pid: pid_t, tp: *timespec) usize
Parameters
pid: pid_t
tp: *timespec
Source
pub fn sched_rr_get_interval(pid: pid_t, tp: *timespec) usize {
return syscall2(.sched_rr_get_interval, @as(usize, @bitCast(@as(isize, pid))), @intFromPtr(tp));
}