rt: Set Linux red zone to 20K again

With runtime logging on it smashes the stack
This commit is contained in:
Brian Anderson 2012-01-09 11:44:32 -08:00
parent 9211348989
commit 7e8974305c

View File

@ -18,8 +18,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*2)
#define RZ_LINUX_64 (1024*2)
#define RZ_LINUX_32 (1024*20)
#define RZ_LINUX_64 (1024*20)
#define RZ_MAC_32 (1024*20)
#define RZ_MAC_64 (1024*20)
#define RZ_WIN_32 (1024*20)