#include <ff/allocator.hpp>
Go to the source code of this file.
|
struct | grppi::detail_ff::ff_arena_t |
| Tag type for fastflow allocation. This empty type is used to select the overloaded placement new and delete operators that invoke the fastflow allocation routines. More...
|
|
|
constexpr ff_arena_t | grppi::detail_ff::ff_arena |
| Fastflow arena object. This object will be passed to placement new/delete to use FastFlow allocation strategy. More...
|
|
◆ operator delete()
Placement delete for the FastFlow arena. Invokes ff_free(). Use by calling operator delete(ptr,ff_arena);.
◆ operator new()
Placement new for the FastFlow arena. Invokes ff_malloc(). Use by calling new (ff_arena) your_type;.