1#ifndef Cpl_Memory_Pool_x_h_
2#define Cpl_Memory_Pool_x_h_
67 size_t alignedBlockSize,
This class is used by the Container classes to implement a various types of DOUBLY linked containers.
Definition Item.h:91
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This abstract class defines the interface for a Memory Allocator.
Definition Allocator.h:76
Helper class so I can put my blocks into to my standard containers.
Definition Pool_.h:35
BlockInfo_()
Constructor.
Definition Pool_.h:38
const char * m_blockPtr
Reference to the block being stored in the list.
Definition Pool_.h:42
This private concrete class implements a Memory Allocator using a pool of fixed size blocks.
Definition Pool_.h:31
Pool_(BlockInfo_ infoBlocks[], size_t blockSize, size_t alignedBlockSize, size_t numBlocks, void *arrayOfBlocks, bool fatalErrors)
Constructor.
Cpl::Container::DList< BlockInfo_ > m_allocatedList
My list of allocated blocks.
Definition Pool_.h:51
size_t m_alignedBlockSize
Block size.
Definition Pool_.h:57
Cpl::Container::DList< BlockInfo_ > m_freeList
My free list of blocks.
Definition Pool_.h:48
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
bool m_fatalErrors
Flag that controls memory errors behavior.
Definition Pool_.h:60
void * allocate(size_t numbytes)
See Cpl::Memory::Allocator.
void release(void *ptr)
See Cpl::Memory::Allocator.
size_t m_blockSize
Block size.
Definition Pool_.h:54
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20