36#ifndef IMT_BASE_DFF_RUNTIME_RUNTIME_POOLS_H
37#define IMT_BASE_DFF_RUNTIME_RUNTIME_POOLS_H
45#ifdef RUNTIME_STATISTICS
64static_assert(::imt::base::dff::runtime::EXECUTABLES_MAX > 0,
"Number of executables out of range");
65static_assert(::imt::base::dff::runtime::EXECUTABLES_MAX <=
INT16_MAX,
"Number of executables out of range");
68static_assert(::imt::base::dff::runtime::TIMEPOOL_SIZE > 0,
"Timer pool size out of range");
69static_assert(::imt::base::dff::runtime::TIMEPOOL_SIZE <=
INT16_MAX,
"Timer pool size out of range");
73static_assert(::imt::base::dff::runtime::BUFFERPOOL_SIZE > 0,
"Buffer pool size out of range");
74static_assert(::imt::base::dff::runtime::BUFFERPOOL_SIZE <=
INT16_MAX,
"Buffer pool size out of range");
96 static BufferPoolAllocator s_bufferAllocator;
108 static BufferPointerAllocator s_bufferPointerAllocator;
122#ifdef RUNTIME_STATISTICS
130 static size_t getExecutionStatisticsSize();
171 static void cleanPools();
179#ifdef RUNTIME_STATISTICS
184 static BufferItem s_bufferPool[imt::base::dff::runtime::BUFFERPOOL_SIZE];
185 static BufferPointerNode s_bufferPointerPool[imt::base::dff::runtime::BUFFERPOOL_SIZE];
187 static ::imt::base::dff::runtime::ExecutableIfc* s_executablePool[imt::base::dff::runtime::EXECUTABLES_MAX];
LinkedList class iterator.
fixed size pool allocator
Interface of an executable which is called by the runtime once an event has to be processed.
Runtime executable for binary user specific allocation.
static T * getExecutableInfo(int16_t const index) noexcept
Gets the executable information.
static int16_t getExecutionPoolSize()
Gets the number of allocated executables.
static TimerPoolAllocator s_timerAllocator
static void registerExecutable(int16_t const index, ExecutableIfc &executable)
Register executable in this pool.
static ExecutableIfc * getExecutable(int16_t const index)
Gets the executable at index.
static constexpr uint_fast8_t MAX
Highest priority.
Holds the data for the event usage statistics.
Holds the data for the executable execution statistics.
This is a application specific file which is used to configure Imt.Base.Core.Math.
Node used for LinkedList class.
TimeItem Object Structure.