From 1bd2c78b05b05f7868cd3b5bfc1e02ae11fb9eaf Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 7 May 2011 09:28:43 +0000 Subject: * thread_pthread.c (USE_MONOTONIC_COND): check the availability more strictly. * thread_pthread.h (rb_thread_cond_t): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_pthread.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'thread_pthread.h') diff --git a/thread_pthread.h b/thread_pthread.h index 64a17fcf67..97a26e0e80 100644 --- a/thread_pthread.h +++ b/thread_pthread.h @@ -20,7 +20,9 @@ typedef pthread_mutex_t rb_thread_lock_t; typedef struct rb_thread_cond_struct { pthread_cond_t cond; +#ifdef HAVE_CLOCKID_T clockid_t clockid; +#endif } rb_thread_cond_t; typedef struct native_thread_data_struct { -- cgit v1.2.1