summaryrefslogtreecommitdiffstats
path: root/old/botan/src/mutex/pthreads/mux_pthr.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/botan/src/mutex/pthreads/mux_pthr.h')
-rw-r--r--old/botan/src/mutex/pthreads/mux_pthr.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/old/botan/src/mutex/pthreads/mux_pthr.h b/old/botan/src/mutex/pthreads/mux_pthr.h
new file mode 100644
index 0000000..1188539
--- /dev/null
+++ b/old/botan/src/mutex/pthreads/mux_pthr.h
@@ -0,0 +1,26 @@
+/*
+* Pthread Mutex
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_MUTEX_PTHREAD_H__
+#define BOTAN_MUTEX_PTHREAD_H__
+
+#include <botan/mutex.h>
+
+namespace Botan {
+
+/*
+* Pthread Mutex Factory
+*/
+class BOTAN_DLL Pthread_Mutex_Factory : public Mutex_Factory
+ {
+ public:
+ Mutex* make();
+ };
+
+}
+
+#endif