diff options
author | lloyd <[email protected]> | 2009-12-16 02:52:12 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-16 02:52:12 +0000 |
commit | 317b76d71dca1840c9e72f9a26407590719c1423 (patch) | |
tree | 2eb49072e6e27f6ee41e704004aa8689b1e98bb3 /Attic/mutex/pthreads | |
parent | 457ce43934a4e51ead4d21e43013eef9d448d0e1 (diff) | |
parent | 12afeca214c4414a0ced0bc4654d0fc5908dc77b (diff) |
propagate from branch 'net.randombit.botan' (head 744dccf92270cf16b80b50ee2759424c9866b256)
to branch 'net.randombit.botan.c++0x' (head 2aa1acac1d05e8ea9991fe39015b1db9abc3b24e)
Diffstat (limited to 'Attic/mutex/pthreads')
-rw-r--r-- | Attic/mutex/pthreads/info.txt | 9 | ||||
-rw-r--r-- | Attic/mutex/pthreads/mux_pthr.cpp | 2 | ||||
-rw-r--r-- | Attic/mutex/pthreads/mux_pthr.h | 4 |
3 files changed, 8 insertions, 7 deletions
diff --git a/Attic/mutex/pthreads/info.txt b/Attic/mutex/pthreads/info.txt index 7315c186a..1d826b61c 100644 --- a/Attic/mutex/pthreads/info.txt +++ b/Attic/mutex/pthreads/info.txt @@ -1,11 +1,12 @@ define MUTEX_PTHREAD -load_on auto - -<add> +<source> mux_pthr.cpp +</source> + +<header:internal> mux_pthr.h -</add> +</header:internal> <libs> all!qnx,freebsd,dragonfly,openbsd,netbsd -> pthread diff --git a/Attic/mutex/pthreads/mux_pthr.cpp b/Attic/mutex/pthreads/mux_pthr.cpp index 9f1d9816e..75a116fe8 100644 --- a/Attic/mutex/pthreads/mux_pthr.cpp +++ b/Attic/mutex/pthreads/mux_pthr.cpp @@ -5,7 +5,7 @@ * Distributed under the terms of the Botan license */ -#include <botan/mux_pthr.h> +#include <botan/internal/mux_pthr.h> #include <botan/exceptn.h> #ifndef _POSIX_C_SOURCE diff --git a/Attic/mutex/pthreads/mux_pthr.h b/Attic/mutex/pthreads/mux_pthr.h index 118853947..27b854265 100644 --- a/Attic/mutex/pthreads/mux_pthr.h +++ b/Attic/mutex/pthreads/mux_pthr.h @@ -8,14 +8,14 @@ #ifndef BOTAN_MUTEX_PTHREAD_H__ #define BOTAN_MUTEX_PTHREAD_H__ -#include <botan/mutex.h> +#include <botan/internal/mutex.h> namespace Botan { /* * Pthread Mutex Factory */ -class BOTAN_DLL Pthread_Mutex_Factory : public Mutex_Factory +class Pthread_Mutex_Factory : public Mutex_Factory { public: Mutex* make(); |