| author | |
| committer | |
| log | 479fd2f7215e504da173356eeb80b356f074a37f |
| tree | c83018cb3562f66f469085ad1e49047881aa583c |
| parent | b1bde35651ad38b930956b97d077ec823cceb078 |
@semarie audited this definition.1 files changed, 6 insertions(+), 0 deletions(-)
lib/std/c/openbsd.zig+6| ... | ... | @@ -1635,3 +1635,9 @@ pub const HW = struct { |
| 1635 | 1635 | pub const NCPUONLINE = 25; |
| 1636 | 1636 | pub const POWER = 26; |
| 1637 | 1637 | }; |
| 1638 | ||
| 1639 | pub const PTHREAD_STACK_MIN = switch (builtin.cpu.arch) { | |
| 1640 | .sparc64 => 1 << 13, | |
| 1641 | .mips64 => 1 << 14, | |
| 1642 | else => 1 << 12, | |
| 1643 | }; |