DebugAllocator

Another proxy allocator used to aggregate statistics and to enforce correct usage.

Constructors

this
this()
Undocumented in source.

Members

Functions

alloc
void[] alloc(size_t sz)
Undocumented in source. Be warned that the author may not have intended to support it.
free
void free(void[] mem)
Undocumented in source. Be warned that the author may not have intended to support it.
getMap
auto getMap()
Undocumented in source. Be warned that the author may not have intended to support it.
ignore
void ignore(void* ptr)
Undocumented in source. Be warned that the author may not have intended to support it.
printMap
void printMap()
Undocumented in source. Be warned that the author may not have intended to support it.
realloc
void[] realloc(void[] mem, size_t new_size)
Undocumented in source. Be warned that the author may not have intended to support it.
setAllocSizeCallbacks
void setAllocSizeCallbacks(void function(size_t) alloc_sz_cb, void function(size_t) free_sz_cb)
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

allocatedBlockCount
size_t allocatedBlockCount [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
bytesAllocated
size_t bytesAllocated [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
maxBytesAllocated
size_t maxBytesAllocated [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

m_baseAlloc
Base m_baseAlloc;
Undocumented in source.

Inherited Members

From Allocator

alignment
enum size_t alignment;
Undocumented in source.
alignmentMask
enum size_t alignmentMask;
Undocumented in source.
alloc
void[] alloc(size_t sz)
Undocumented in source.
realloc
void[] realloc(void[] mem, size_t new_sz)
Undocumented in source.
free
void free(void[] mem)
Undocumented in source.

Meta