about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-12-20 14:04:10 -0800
committerBrian Anderson <banderson@mozilla.com>2011-12-20 14:24:13 -0800
commitba8f369f890f6c7241c616df552f0e2ebf1509c8 (patch)
tree9daaacb301f80b0cfe4d7a433983106815dc35af /src/rt/rust_task.cpp
parentf5c4cc70d61c9fddcf3954e9cef19dcb94e15ea4 (diff)
downloadrust-ba8f369f890f6c7241c616df552f0e2ebf1509c8.tar.gz
rust-ba8f369f890f6c7241c616df552f0e2ebf1509c8.zip
rt: Reduce the mac red zone to 2K
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 2e17075ee59..84393e9202f 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -20,8 +20,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*20)
-#define RZ_MAC_64   (1024*20)
+#define RZ_MAC_32   (1024*2)
+#define RZ_MAC_64   (1024*2)
 #define RZ_WIN_32   (1024*20)
 
 #ifdef __linux__