]> git.lizzy.rs Git - rust.git/commitdiff
rt: Reduce the mac red zone to 2K
authorBrian Anderson <banderson@mozilla.com>
Tue, 20 Dec 2011 22:04:10 +0000 (14:04 -0800)
committerBrian Anderson <banderson@mozilla.com>
Tue, 20 Dec 2011 22:24:13 +0000 (14:24 -0800)
src/rt/rust_task.cpp

index 2e17075ee5913e9a4de7d323604ffe2b47a5ce04..84393e9202fa9e2c892a9b19cd3204988a43d286 100644 (file)
@@ -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__