From 762d7e43a6594beb839e1c7020935b561e2d9ae5 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sun, 18 Dec 2011 14:30:38 -0800 Subject: rt: Trim the red zone to 20k on all platforms --- 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 918721a6823..3cb553bcd7b 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -19,11 +19,11 @@ // 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 #ifdef __i386__ -#define RED_ZONE_SIZE 65536 +#define RED_ZONE_SIZE 1024*20 #endif #ifdef __x86_64__ -#define RED_ZONE_SIZE 65536 +#define RED_ZONE_SIZE 1024*20 #endif // Stack size -- cgit 1.4.1-3-g733a5