From cf0f73e0cfee96e54e6347d572a39b2611b523e0 Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Fri, 21 Mar 2025 23:52:52 +0100 Subject: [PATCH] fix typo for freebsd arm64 MINSIGSTKSZ Fixes #4878 --- core/sys/posix/signal.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sys/posix/signal.odin b/core/sys/posix/signal.odin index c7e2cc09b..d2f737946 100644 --- a/core/sys/posix/signal.odin +++ b/core/sys/posix/signal.odin @@ -565,7 +565,7 @@ when ODIN_OS == .Darwin { SS_ONSTACK :: 0x0001 SS_DISABLE :: 0x0004 - when ODIN_ARCH == .amd64 || ODIN_ARCH == .arm32 { + when ODIN_ARCH == .arm64 || ODIN_ARCH == .arm32 { MINSIGSTKSZ :: 1024 * 4 } else when ODIN_ARCH == .amd64 || ODIN_ARCH == .i386 { MINSIGSTKSZ :: 512 * 4