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.

sched_getaffinity

linux.sched_getaffinity
pub fn sched_getaffinity(pid: pid_t, size: u32, set: *cpu_set_t) usize

File

lib/std/os/linux.zig:2784

Code

pub fn sched_getaffinity(pid: pid_t, size: u32, set: *cpu_set_t) usize {
    const rc = syscall3(.sched_getaffinity, @as(u32, @bitCast(pid)), size, @intFromPtr(set));
    if (@as(isize, @bitCast(rc)) < 0) return rc;
    if (rc < size) @memset(@as([*]u8, @ptrCast(set))[rc..size], 0);
    return 0;
}