Skip to content

Commit cb7022c

Browse files
committed
rt: Cut the red zone to 10K on mac
1 parent b44be95 commit cb7022c

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
@@ -18,8 +18,8 @@
1818
// FIXME: We want this to be 128 but need to slim the red zone calls down
1919
#define RZ_LINUX_32 (1024*2)
2020
#define RZ_LINUX_64 (1024*2)
21-
#define RZ_MAC_32 (1024*20)
22-
#define RZ_MAC_64 (1024*20)
21+
#define RZ_MAC_32 (1024*10)
22+
#define RZ_MAC_64 (1024*10)
2323
#define RZ_WIN_32 (1024*20)
2424
#define RZ_BSD_32 (1024*20)
2525
#define RZ_BSD_64 (1024*20)

0 commit comments

Comments
 (0)