Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

timerfd_gettime

linux.timerfd_gettime
pub fn timerfd_gettime(fd: fd_t, curr_value: *itimerspec) usize

File

lib/std/os/linux.zig:2846

Code

pub fn timerfd_gettime(fd: fd_t, curr_value: *itimerspec) usize {
    return syscall2(
        if (@hasField(SYS, "timerfd_gettime") and native_arch != .hexagon) .timerfd_gettime else .timerfd_gettime64,
        @as(u32, @bitCast(fd)),
        @intFromPtr(curr_value),
    );
}