Sha256: 77ecc33a3d04554b2d0b56c2a0d48b0f0d3b0167b7806a3b67dd9776baba360f
Contents?: true
Size: 575 Bytes
Versions: 898
Compression:
Stored size: 575 Bytes
Contents
#ifndef RUBY_THREAD_NATIVE_H #define RUBY_THREAD_NATIVE_H #if defined(_WIN32) #include "thread_win32.h" #elif defined(HAVE_PTHREAD_H) #include "thread_pthread.h" #else #error "unsupported thread type" #endif RUBY_SYMBOL_EXPORT_BEGIN rb_nativethread_id_t rb_nativethread_self(); void rb_nativethread_lock_initialize(rb_nativethread_lock_t *lock); void rb_nativethread_lock_destroy(rb_nativethread_lock_t *lock); void rb_nativethread_lock_lock(rb_nativethread_lock_t *lock); void rb_nativethread_lock_unlock(rb_nativethread_lock_t *lock); RUBY_SYMBOL_EXPORT_END #endif
Version data entries
898 entries across 96 versions & 8 rubygems