summaryrefslogtreecommitdiffstats
path: root/botan/build/botan/defalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'botan/build/botan/defalloc.h')
-rw-r--r--botan/build/botan/defalloc.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/botan/build/botan/defalloc.h b/botan/build/botan/defalloc.h
new file mode 100644
index 0000000..627e8df
--- /dev/null
+++ b/botan/build/botan/defalloc.h
@@ -0,0 +1,43 @@
+/*
+* Basic Allocators
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_BASIC_ALLOC_H__
+#define BOTAN_BASIC_ALLOC_H__
+
+#include <botan/mem_pool.h>
+
+namespace Botan {
+
+/*
+* Malloc Allocator
+*/
+class BOTAN_DLL Malloc_Allocator : public Allocator
+ {
+ public:
+ void* allocate(u32bit);
+ void deallocate(void*, u32bit);
+
+ std::string type() const { return "malloc"; }
+ };
+
+/*
+* Locking Allocator
+*/
+class BOTAN_DLL Locking_Allocator : public Pooling_Allocator
+ {
+ public:
+ Locking_Allocator(Mutex* m) : Pooling_Allocator(m) {}
+
+ std::string type() const { return "locking"; }
+ private:
+ void* alloc_block(u32bit);
+ void dealloc_block(void*, u32bit);
+ };
+
+}
+
+#endif