summaryrefslogtreecommitdiffstats
path: root/thread_pthread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-09 09:17:09 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-09 09:17:09 +0000
commit9a10bdc98eb60b07c9f4da7b8db30e5823523e51 (patch)
treee45655d0fd5be25e82a27b4c7ed4f44f460216d8 /thread_pthread.c
parent5cba81a12d29690e067ae34be6054250aca949c0 (diff)
downloadruby-9a10bdc98eb60b07c9f4da7b8db30e5823523e51.tar.gz
ruby-9a10bdc98eb60b07c9f4da7b8db30e5823523e51.tar.xz
ruby-9a10bdc98eb60b07c9f4da7b8db30e5823523e51.zip
* thread_{pthread,win32}.c (rb_thread_create_timer_thread): needs more
stack for debug. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 72a4dae8c..4787823b3 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -693,7 +693,8 @@ rb_thread_create_timer_thread(void)
pthread_attr_init(&attr);
#ifdef PTHREAD_STACK_MIN
- pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
+ pthread_attr_setstacksize(&attr,
+ PTHREAD_STACK_MIN + (THREAD_DEBUG ? BUFSIZ : 0));
#endif
err = pthread_create(&timer_thread_id, &attr, thread_timer, GET_VM());
if (err != 0) {