|
|
Memory allocator for large groups of small objects. This should be used for large groups of objects that are created and destroyed together. When used carefully for this purpose it is faster and more memory efficient than malloc.
KZoneAllocator (long _blockSize = 128*1024) |
Create a ZoneAllocator
Parameters:
_blockSize | Size in bytes of the blocks requested from malloc. |
~KZoneAllocator () |
Destruct the ZoneAllocator and free all memory allocated by it.
void* allocate (size_t _size) |
Allocate a memory block.
Parameters:
_size | Size in bytes of the memory block. Memory is not alligned! |