From f28e37c4483fbe21f78fbe025090e2b63257a00e Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 12 Jul 2007 01:30:48 +0000 Subject: * thread.c (thread_join): pthread_t may not be pointer. * thread_pthread.ci (ubf_select_each): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_pthread.ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread_pthread.ci') diff --git a/thread_pthread.ci b/thread_pthread.ci index 0f91a8606..cd5e05bde 100644 --- a/thread_pthread.ci +++ b/thread_pthread.ci @@ -301,7 +301,7 @@ ubf_pthread_cond_signal(rb_thread_t *th) static void ubf_select_each(rb_thread_t *th) { - thread_debug("ubf_select_each (%p)\n", th->thread_id); + thread_debug("ubf_select_each (%p)\n", (void*)th->thread_id); if (th) { pthread_kill(th->thread_id, SIGVTALRM); } -- cgit