[前][次][番号順一覧][スレッド一覧]

ruby-changes:2738

From: ko1@a...
Date: 14 Dec 2007 18:21:52 +0900
Subject: [ruby-changes:2738] akr - Ruby:r14229 (trunk): * thread_pthread.ci (native_thread_create): twice the stack size.

akr	2007-12-14 18:20:35 +0900 (Fri, 14 Dec 2007)

  New Revision: 14229

  Modified files:
    trunk/ChangeLog
    trunk/thread_pthread.ci

  Log:
    * thread_pthread.ci (native_thread_create): twice the stack size.
      512KB is not enough to complete test-all on Debian GNU/Linux on
      IA64.


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/thread_pthread.ci?r1=14229&r2=14228
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=14229&r2=14228

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 14228)
+++ ChangeLog	(revision 14229)
@@ -1,3 +1,9 @@
+Fri Dec 14 18:18:31 2007  Tanaka Akira  <akr@f...>
+
+	* 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@r...>
 
 	* io.c (rb_f_p): RDoc update.  a patch from murphy <murphy AT rubychan.de>.
Index: thread_pthread.ci
===================================================================
--- thread_pthread.ci	(revision 14228)
+++ thread_pthread.ci	(revision 14229)
@@ -280,7 +280,7 @@
     }
     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) {

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧]