summaryrefslogtreecommitdiff
path: root/thread.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
commita534e39a87b81804ca58dc0b765d338b83f0a96d (patch)
treee45655d0fd5be25e82a27b4c7ed4f44f460216d8 /thread.c
parent71b1673229c57cd44b2ffe79bb094cfb986fbeca (diff)
* thread_{pthread,win32}.c (rb_thread_create_timer_thread): needs more
stack for debug. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 5ede10c600..db77e4d28d 100644
--- a/thread.c
+++ b/thread.c
@@ -167,7 +167,7 @@ static void timer_thread_function(void *);
#define DEBUG_OUT() \
pthread_mutex_lock(&debug_mutex); \
- printf("%p - %s", pthread_self(), buf); \
+ printf("%#"PRIxVALUE" - %s", (VALUE)pthread_self(), buf); \
fflush(stdout); \
pthread_mutex_unlock(&debug_mutex);