From 7a6498668f2f4d3eff393809418b565d027b35bd Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 23 Feb 2012 00:23:22 -0800 Subject: rt: Cut the red zone to 2K on linux --- src/rt/rust_task.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/rt/rust_task.cpp') diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp index b432a8525fc..a2887d986f5 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -16,8 +16,8 @@ // The amount of extra space at the end of each stack segment, available // to the rt, compiler and dynamic linker for running small functions // FIXME: We want this to be 128 but need to slim the red zone calls down -#define RZ_LINUX_32 (1024*4) -#define RZ_LINUX_64 (1024*4) +#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_WIN_32 (1024*20) -- cgit 1.4.1-3-g733a5