summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-14 09:20:35 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-14 09:20:35 +0000
commite1f335302dae9e62788505d2fef993d0114725a4 (patch)
treeac0146cbd5cda43ff7283771e4005b326f9c4d67
parente20dfc9e0d9d423e6bef5e06fb98352311a70641 (diff)
downloadruby-e1f335302dae9e62788505d2fef993d0114725a4.tar.gz
ruby-e1f335302dae9e62788505d2fef993d0114725a4.tar.xz
ruby-e1f335302dae9e62788505d2fef993d0114725a4.zip
* thread_pthread.ci (native_thread_create): twice the stack size.
512KB is not enough to complete test-all on Debian GNU/Linux on IA64. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14229 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--thread_pthread.ci2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 839461d0f..13661d96a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Dec 14 18:18:31 2007 Tanaka Akira <akr@fsij.org>
+
+ * thread_pthread.ci (native_thread_create): twice the stack size.
+ 512KB is not enough to complete test-all on Debian GNU/Linux on
+ IA64.
+
Fri Dec 14 16:10:50 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* io.c (rb_f_p): RDoc update. a patch from murphy <murphy AT rubychan.de>.
diff --git a/thread_pthread.ci b/thread_pthread.ci
index 6004d4aa3..9d5a7d3d7 100644
--- a/thread_pthread.ci
+++ b/thread_pthread.ci
@@ -280,7 +280,7 @@ native_thread_create(rb_thread_t *th)
}
else {
pthread_attr_t attr;
- size_t stack_size = 512 * 1024; /* 512KB */
+ size_t stack_size = 1024 * 1024; /* 1024KB */
#ifdef PTHREAD_STACK_MIN
if (stack_size < PTHREAD_STACK_MIN) {