aboutsummaryrefslogtreecommitdiffstats
path: root/thread_pthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'thread_pthread.h')
-rw-r--r--thread_pthread.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/thread_pthread.h b/thread_pthread.h
index 3742cb2848..64a17fcf67 100644
--- a/thread_pthread.h
+++ b/thread_pthread.h
@@ -17,12 +17,16 @@
#endif
typedef pthread_t rb_thread_id_t;
typedef pthread_mutex_t rb_thread_lock_t;
-typedef pthread_cond_t rb_thread_cond_t;
+
+typedef struct rb_thread_cond_struct {
+ pthread_cond_t cond;
+ clockid_t clockid;
+} rb_thread_cond_t;
typedef struct native_thread_data_struct {
void *signal_thread_list;
- pthread_cond_t sleep_cond;
- pthread_cond_t gvl_cond;
+ rb_thread_cond_t sleep_cond;
+ rb_thread_cond_t gvl_cond;
struct rb_thread_struct *gvl_next;
} native_thread_data_t;