From 155a67eae7cedba0180c53597d160b80c828f92e Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 24 Feb 2012 12:26:06 -0800 Subject: [PATCH] Revert "rt: Cut the red zone to 10K on mac" This reverts commit cb7022cfc20b89947ff3fa96d4617f9fe64d2f3e. --- src/rt/rust_task.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp index 348b4fce107..a2887d986f5 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -18,8 +18,8 @@ // FIXME: We want this to be 128 but need to slim the red zone calls down #define RZ_LINUX_32 (1024*2) #define RZ_LINUX_64 (1024*2) -#define RZ_MAC_32 (1024*10) -#define RZ_MAC_64 (1024*10) +#define RZ_MAC_32 (1024*20) +#define RZ_MAC_64 (1024*20) #define RZ_WIN_32 (1024*20) #define RZ_BSD_32 (1024*20) #define RZ_BSD_64 (1024*20)