1#ifndef Cpl_Memory_SPool_h_
2#define Cpl_Memory_SPool_h_
48template <
class T,
int N>
65 SPool(
bool fatalErrors =
false )
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
This private concrete class implements a Memory Allocator using a pool of fixed size blocks.
Definition Pool_.h:31
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
void * allocate(size_t numbytes)
See Cpl::Memory::Allocator.
void release(void *ptr)
See Cpl::Memory::Allocator.
This template class defines a concrete Allocator that STATICALLY allocates all of its Memory and can ...
Definition SPool.h:50
void * allocate(size_t numbytes)
See Cpl::Memory::Allocator.
Definition SPool.h:73
Pool_::BlockInfo_ m_infoBlocks[N]
Allocate memory for BlockInfo_ instances.
Definition SPool.h:56
AlignedClass< T > m_blocks[N]
Allocate blocks.
Definition SPool.h:53
Pool_ m_pool
My Pool work object.
Definition SPool.h:59
SPool(bool fatalErrors=false)
Constructor.
Definition SPool.h:65
void release(void *ptr)
See Cpl::Memory::Allocator.
Definition SPool.h:76
size_t wordSize() const noexcept
See Cpl::Memory::Allocator.
Definition SPool.h:79
This type is used to create a memory block that is large enough to hold the memory footprint of ONE i...
Definition Aligned.h:47
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20