summaryrefslogtreecommitdiff
path: root/src/unix/pthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/unix/pthread.h')
-rw-r--r--src/unix/pthread.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unix/pthread.h b/src/unix/pthread.h
index 87384a4ab..7487cb5c5 100644
--- a/src/unix/pthread.h
+++ b/src/unix/pthread.h
@@ -17,4 +17,11 @@ typedef struct {
#define git_thread_join(git_thread_ptr, status) \
pthread_join((git_thread_ptr)->thread, status)
+/* Git Mutex */
+#define git_mutex pthread_mutex_t
+#define git_mutex_init(a) pthread_mutex_init(a, NULL)
+#define git_mutex_lock(a) pthread_mutex_lock(a)
+#define git_mutex_unlock(a) pthread_mutex_unlock(a)
+#define git_mutex_free(a) pthread_mutex_destroy(a)
+
#endif /* INCLUDE_unix_pthread_h__ */