about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-02-24 12:26:06 -0800
committerBrian Anderson <banderson@mozilla.com>2012-02-24 12:26:06 -0800
commit155a67eae7cedba0180c53597d160b80c828f92e (patch)
treebc848f8842dc0b6ddad0395793a0a07e5c499da2 /src/rt/rust_task.cpp
parent9982a2a8416cb263f875e5cec7a5c5b6e2b7b1fe (diff)
downloadrust-155a67eae7cedba0180c53597d160b80c828f92e.tar.gz
rust-155a67eae7cedba0180c53597d160b80c828f92e.zip
Revert "rt: Cut the red zone to 10K on mac"
This reverts commit cb7022cfc20b89947ff3fa96d4617f9fe64d2f3e.
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp4
1 files 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)