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