aboutsummaryrefslogtreecommitdiffstats
path: root/thread_pthread.ci
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-12 01:30:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-12 01:30:48 +0000
commit1fe38a5caee8985c0e2d6eb05894fad3c9476d6d (patch)
tree01708f0fb5b6d68593999f79ff886045af80597e /thread_pthread.ci
parent0fcf8e17aaea1b5562a89c3aed24c2e722b38a66 (diff)
downloadruby-1fe38a5caee8985c0e2d6eb05894fad3c9476d6d.tar.gz
* thread.c (thread_join): pthread_t may not be pointer.
* thread_pthread.ci (ubf_select_each): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.ci')
-rw-r--r--thread_pthread.ci2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_pthread.ci b/thread_pthread.ci
index 0f91a86063..cd5e05bde1 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);
}