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.

PTHREAD_STACK_MIN

openbsd.PTHREAD_STACK_MIN
pub const PTHREAD_STACK_MIN = switch (builtin.cpu.arch)

File

lib/std/c/openbsd.zig:305

Code

pub const PTHREAD_STACK_MIN = switch (builtin.cpu.arch) {
    .sparc64 => 1 << 13,
    .mips64 => 1 << 14,
    else => 1 << 12,
}