1#ifndef Cpl_Memory_LeanHeap_h_
2#define Cpl_Memory_LeanHeap_h_
40 LeanHeap(
size_t* heapMemory,
size_t sizeInBytes );
54 size_t wordSize() const noexcept {
return sizeof( size_t ); }
This abstract class is used 'extend' the Memory Allocator to have contiguous semantics.
Definition ContiguousAllocator.h:32
This class manages an allocate-only-heap.
Definition LeanHeap.h:34
size_t m_wordsRemaining
The amount of remaining free memory in size_t words.
Definition LeanHeap.h:74
size_t * m_ptr
Pointer to the next available free byte of memory.
Definition LeanHeap.h:71
size_t m_staringHeapSize
Size (in words) of the original heap memory.
Definition LeanHeap.h:68
void * allocate(size_t numbytes)
See Cpl::Memory::ContiguousAllocator.
void reset() noexcept
See Cpl::Memory::ContiguousAllocator.
LeanHeap(size_t *heapMemory, size_t sizeInBytes)
Constructor.
uint8_t * getMemoryStart(size_t &dstAllocatedLenInBytes) noexcept
See Cpl::Memory::ContiguousAllocator.
size_t * m_ptrBase
Pointer to the base of the original heap memory.
Definition LeanHeap.h:65
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
Definition LeanHeap.h:54
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20