Skip to content

Commit ba8f369

Browse files
committed
rt: Reduce the mac red zone to 2K
1 parent f5c4cc7 commit ba8f369

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rt/rust_task.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
// FIXME: We want this to be 128 but need to slim the red zone calls down
2121
#define RZ_LINUX_32 (1024*2)
2222
#define RZ_LINUX_64 (1024*2)
23-
#define RZ_MAC_32 (1024*20)
24-
#define RZ_MAC_64 (1024*20)
23+
#define RZ_MAC_32 (1024*2)
24+
#define RZ_MAC_64 (1024*2)
2525
#define RZ_WIN_32 (1024*20)
2626

2727
#ifdef __linux__

0 commit comments

Comments
 (0)