aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-18 09:10:46 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-18 09:10:46 +0000
commit469cc485423c8abc268ff7cdd8c52e5cb7675f26 (patch)
tree53b41ec9a9f40e1c7e0a2a46f8204d54a671426e /cont.c
parent1a2ef6bae3c0db71adbbe9e871ca87a87b4d647c (diff)
downloadruby-469cc485423c8abc268ff7cdd8c52e5cb7675f26.tar.gz
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
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c2
1 files changed, 1 insertions, 1 deletions
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