Sha256: e6abfb9f91a3f99b0465577c1f29bbe649d1540be599a333b4544d663255472c
Contents?: true
Size: 592 Bytes
Versions: 117
Compression:
Stored size: 592 Bytes
Contents
/********************************************************************** thread_pthread.h - $Author: nobu $ Copyright (C) 2004-2007 Koichi Sasada **********************************************************************/ #ifndef RUBY_THREAD_PTHREAD_H #define RUBY_THREAD_PTHREAD_H #include <pthread.h> 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 native_thread_data_struct { void *signal_thread_list; pthread_cond_t sleep_cond; } native_thread_data_t; #endif /* RUBY_THREAD_PTHREAD_H */
Version data entries
117 entries across 109 versions & 4 rubygems