authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-31 17:06:54+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-01 09:58:05+01:00
log4e943fc847befb477fbb76e42b199e1f61868a4a
treeef2b55f4c3a74b480a34dde23bc54f842551450d
parentd5585bc650b7549f38d551d9021c60f9247bb237
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.c: add missing MINSIGSTKSZ for some FreeBSD targets


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/c.zig+2-2
......@@ -9703,8 +9703,8 @@ pub const NSIG = switch (native_os) {
97039703pub const MINSIGSTKSZ = switch (native_os) {
97049704 .macos, .ios, .tvos, .watchos, .visionos => 32768,
97059705 .freebsd => switch (builtin.cpu.arch) {
9706 .x86, .x86_64 => 2048,
9707 .arm, .aarch64 => 4096,
9706 .powerpc64, .powerpc64le, .x86, .x86_64 => 2048,
9707 .arm, .aarch64, .riscv64 => 4096,
97089708 else => @compileError("unsupported arch"),
97099709 },
97109710 .illumos => 2048,