aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/defalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/defalloc.h')
-rw-r--r--src/core/defalloc.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/core/defalloc.h b/src/core/defalloc.h
deleted file mode 100644
index dc01ee47f..000000000
--- a/src/core/defalloc.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*************************************************
-* Basic Allocators Header File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
-
-#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