mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@14229 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
11f3462fb7
commit
6deeaf6226
2 changed files with 7 additions and 1 deletions
|
@ -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>
|
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>.
|
* io.c (rb_f_p): RDoc update. a patch from murphy <murphy AT rubychan.de>.
|
||||||
|
|
|
@ -280,7 +280,7 @@ native_thread_create(rb_thread_t *th)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
pthread_attr_t attr;
|
pthread_attr_t attr;
|
||||||
size_t stack_size = 512 * 1024; /* 512KB */
|
size_t stack_size = 1024 * 1024; /* 1024KB */
|
||||||
|
|
||||||
#ifdef PTHREAD_STACK_MIN
|
#ifdef PTHREAD_STACK_MIN
|
||||||
if (stack_size < PTHREAD_STACK_MIN) {
|
if (stack_size < PTHREAD_STACK_MIN) {
|
||||||
|
|
Loading…
Reference in a new issue