aboutsummaryrefslogtreecommitdiffstats
path: root/thread_native.h
diff options
context:
space:
mode:
Diffstat (limited to 'thread_native.h')
-rw-r--r--thread_native.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/thread_native.h b/thread_native.h
new file mode 100644
index 0000000000..2870b895c6
--- /dev/null
+++ b/thread_native.h
@@ -0,0 +1,21 @@
+#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
+
+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