diff options
Diffstat (limited to 'modules/allocation/alloc_mmap/mmap_mem.h')
-rw-r--r-- | modules/allocation/alloc_mmap/mmap_mem.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/modules/allocation/alloc_mmap/mmap_mem.h b/modules/allocation/alloc_mmap/mmap_mem.h new file mode 100644 index 000000000..ddf999014 --- /dev/null +++ b/modules/allocation/alloc_mmap/mmap_mem.h @@ -0,0 +1,27 @@ +/************************************************* +* Memory Mapping Allocator Header File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#ifndef BOTAN_EXT_MMAP_ALLOCATOR_H__ +#define BOTAN_EXT_MMAP_ALLOCATOR_H__ + +#include <botan/mem_pool.h> + +namespace Botan { + +/************************************************* +* Memory Mapping Allocator * +*************************************************/ +class MemoryMapping_Allocator : public Pooling_Allocator + { + public: + std::string type() const { return "mmap"; } + private: + void* alloc_block(u32bit); + void dealloc_block(void*, u32bit); + }; + +} + +#endif |