36#ifndef IMT_BASE_DFF_RUNTIME_EVENTREADYLIST_H
37#define IMT_BASE_DFF_RUNTIME_EVENTREADYLIST_H
104 constexpr uint8_t maxZeroCount {32};
113 return m_corePriorityBitmap == 0;
120 struct PrioList final {
126 inline void setPriorityFlag(
uint8_t priorityIndex);
127 inline void clearPriorityFlag(
uint8_t priorityIndex);
129 std::array<PrioList, RuntimePriorityLimits::MAX> m_prioLists;
Event data structure base.
Class to store EventData-pointers according to their priority.
bool isEmpty() const
Query if the list is empty.
uint8_t getHighestPendingPriority() const
Return the priority of the stored event with the highest priority.
EventReadyList(Node pool[], size_t poolSize)
Constructor.
void push(EventData *pEvent, uint8_t priority)
Store an event pointer in the list.
EventData * pop(uint8_t priority)
Return the stored event data pointer of the given priority.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Internal structure to store event pointers as list, public only because of the pool initialization in...
Node * m_pNext
Pointer to the next list element.
EventData * m_pEvent
Payload to be stored: Pointer to EventData.