aboutsummaryrefslogtreecommitdiffstats
path: root/src/mutex/mutex.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-12-16 02:22:58 +0000
committerlloyd <[email protected]>2009-12-16 02:22:58 +0000
commit12afeca214c4414a0ced0bc4654d0fc5908dc77b (patch)
treed0706f470d406d68b4ec1f559d2e0f6426174c28 /src/mutex/mutex.h
parent87cbaef441c6baba2699a8ea53ac2562c46c772d (diff)
Make many more headers internal-only.
Fixes for the amalgamation generator for internal headers. Remove BOTAN_DLL exporting macros from all internal-only headers; the classes/functions there don't need to be exported, and avoiding the PIC/GOT indirection can be a big win. Add missing BOTAN_DLLs where necessary, mostly gfpmath and cvc For GCC, use -fvisibility=hidden and set BOTAN_DLL to the visibility __attribute__ to export those classes/functions.
Diffstat (limited to 'src/mutex/mutex.h')
-rw-r--r--src/mutex/mutex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mutex/mutex.h b/src/mutex/mutex.h
index a04ff83c9..fcb0e9982 100644
--- a/src/mutex/mutex.h
+++ b/src/mutex/mutex.h
@@ -15,7 +15,7 @@ namespace Botan {
/*
* Mutex Base Class
*/
-class BOTAN_DLL Mutex
+class Mutex
{
public:
virtual void lock() = 0;
@@ -26,7 +26,7 @@ class BOTAN_DLL Mutex
/*
* Mutex Factory
*/
-class BOTAN_DLL Mutex_Factory
+class Mutex_Factory
{
public:
virtual Mutex* make() = 0;
@@ -36,7 +36,7 @@ class BOTAN_DLL Mutex_Factory
/*
* Mutex Holding Class
*/
-class BOTAN_DLL Mutex_Holder
+class Mutex_Holder
{
public:
Mutex_Holder(Mutex* m) : mux(m)