diff options
Diffstat (limited to 'modules/alloc_mmap/mmap_mem.h')
-rw-r--r-- | modules/alloc_mmap/mmap_mem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/alloc_mmap/mmap_mem.h b/modules/alloc_mmap/mmap_mem.h index 0530e54be..04923571d 100644 --- a/modules/alloc_mmap/mmap_mem.h +++ b/modules/alloc_mmap/mmap_mem.h @@ -17,6 +17,7 @@ class MemoryMapping_Allocator : public Pooling_Allocator { public: MemoryMapping_Allocator() : Pooling_Allocator(64*1024, false) {} + std::string type() const { return "mmap"; } private: void* alloc_block(u32bit); void dealloc_block(void*, u32bit); |