summaryrefslogtreecommitdiffstats
path: root/client/thread.h
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-14 21:52:55 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-04-14 21:52:55 -0400
commit6ba98a9f9f48e13738d9736cba9c45b5e94f42f2 (patch)
tree86d7c281bcdbf67eb53cee064aa905e740ec5ccf /client/thread.h
downloadnastd-6ba98a9f9f48e13738d9736cba9c45b5e94f42f2.tar.gz
nastd-6ba98a9f9f48e13738d9736cba9c45b5e94f42f2.zip
Initial import
Diffstat (limited to 'client/thread.h')
-rw-r--r--client/thread.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/client/thread.h b/client/thread.h
new file mode 100644
index 0000000..171fde1
--- /dev/null
+++ b/client/thread.h
@@ -0,0 +1,19 @@
+/* $Id: thread.h,v 1.5 2000/09/13 20:21:30 shmit Exp $ */
+
+#ifndef THREAD_H
+# define THREAD_H
+
+#ifdef THREADSAFECLIENT
+#include <pthread.h>
+
+typedef pthread_mutex_t _nast_mutex_t;
+#else
+typedef int _nast_mutex_t;
+#endif
+
+short thread_id();
+int _nast_mutex_new(_nast_mutex_t *lock);
+void _nast_mutex_delete(_nast_mutex_t *lock);
+int _nast_mutex_lock(_nast_mutex_t *lock);
+int _nast_mutex_unlock(_nast_mutex_t *lock);
+#endif