From 469cc485423c8abc268ff7cdd8c52e5cb7675f26 Mon Sep 17 00:00:00 2001 From: kosaki Date: Fri, 18 May 2012 09:10:46 +0000 Subject: decrease fiber stack size. 1MB is too large for windows. [Bug #6344] [ruby-dev:45554] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- cont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cont.c b/cont.c index 839b6703a9..4ca1279d02 100644 --- a/cont.c +++ b/cont.c @@ -49,7 +49,7 @@ static long pagesize; #if SIZEOF_VOIDP==8 - #define FIBER_MACHINE_STACK_ALLOCATION_SIZE (0x100000) + #define FIBER_MACHINE_STACK_ALLOCATION_SIZE (0x20000) #else #define FIBER_MACHINE_STACK_ALLOCATION_SIZE (0x10000) #endif -- cgit v1.2.3