Function setitimer [src]

Prototype

pub fn setitimer(which: i32, new_value: *const itimerspec, old_value: ?*itimerspec) usize

Parameters

which: i32new_value: *const itimerspecold_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)); }