Visible to Intel only — GUID: GUID-7A8C4A12-E9D3-4735-9FDB-49661856F534
Visible to Intel only — GUID: GUID-7A8C4A12-E9D3-4735-9FDB-49661856F534
Scalable Memory Pools
Memory pools allocate and free memory from a specified region or an underlying allocator using thread-safe, scalable operations. The following table summarizes the Memory Pool named requirement. Here, P represents an instance of the memory pool class.
Pseudo-Signature |
Semantics |
---|---|
~P() throw(); |
Destructor. Frees all the allocated memory. |
void P::recycle(); |
Frees all the allocated memory. |
void* P::malloc(size_t n); |
Returns a pointer to n bytes allocated from the memory pool. |
void P::free(void* ptr); |
Frees the memory object specified via ptr pointer. |
void* P::realloc(void* ptr, size_t n); |
Reallocates the memory object pointed by ptr to n bytes. |
Model Types
The memory_pool template class and the fixed_pool class meet the Memory Pool named requirement.