DoxigAlpha

PTHREAD_STACK_MIN

Source

Implementation

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