Function setitimer [src]
Prototype
pub fn setitimer(which: i32, new_value: *const itimerspec, old_value: ?*itimerspec) usize
Parameters
which: i32
new_value: *const itimerspec
old_value: ?*itimerspec
Source
pub fn setitimer(which: i32, new_value: *const itimerspec, old_value: ?*itimerspec) usize {
return syscall3(.setitimer, @as(usize, @bitCast(@as(isize, which))), @intFromPtr(new_value), @intFromPtr(old_value));
}