summaryrefslogtreecommitdiff
path: root/thread_pthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'thread_pthread.h')
-rw-r--r--thread_pthread.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/thread_pthread.h b/thread_pthread.h
index 29306e0e19..1ef4dfb2ca 100644
--- a/thread_pthread.h
+++ b/thread_pthread.h
@@ -16,9 +16,12 @@
typedef pthread_t rb_thread_id_t;
typedef pthread_mutex_t rb_thread_lock_t;
-#define native_mutex_lock pthread_mutex_lock
-#define native_mutex_unlock pthread_mutex_unlock
-#define native_mutex_trylock pthread_mutex_trylock
+void native_mutex_lock(pthread_mutex_t *lock);
+void native_mutex_unlock(pthread_mutex_t *lock);
+void native_mutex_destroy(pthread_mutex_t *lock);
+int native_mutex_trylock(pthread_mutex_t *lock);
+void native_mutex_initialize(pthread_mutex_t *lock);
+void native_mutex_destroy(pthread_mutex_t *lock);
typedef struct native_thread_data_struct {
void *signal_thread_list;