PRIVILEGED_DATAstaticList_t*volatilepxOverflowDelayedTaskList;/*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */
PRIVILEGED_DATAstaticList_txPendingReadyList[configNUMBER_OF_CORES];/*< Tasks that have been readied while the scheduler was suspended. They will be moved to the ready list when the scheduler is resumed. */
PRIVILEGED_DATAstaticconfigRUN_TIME_COUNTER_TYPEulTaskSwitchedInTime[configNUMBER_OF_CORES]={0UL};/*< Holds the value of a timer/counter the last time a task was switched in. */
PRIVILEGED_DATAstaticvolatileconfigRUN_TIME_COUNTER_TYPEulTotalRunTime=0UL;/*< Holds the total amount of execution time as defined by the run time counter clock. */
PRIVILEGED_DATAstaticStaticQueue_txStaticTimerQueue;/*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */
PRIVILEGED_DATAstaticuint8_tucStaticTimerQueueStorage[(size_t)configTIMER_QUEUE_LENGTH*sizeof(DaemonTaskMessage_t)];/*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */