You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Do not move these variables to function scope as doing so prevents the
398
398
* code working with debuggers that need to remove the static qualifier. */
399
-
PRIVILEGED_DATAstaticuint32_tulTaskSwitchedInTime=0UL; /*< Holds the value of a timer/counter the last time a task was switched in. */
400
-
PRIVILEGED_DATAstaticvolatileuint32_tulTotalRunTime=0UL; /*< Holds the total amount of execution time as defined by the run time counter clock. */
399
+
PRIVILEGED_DATAstaticuint32_tulTaskSwitchedInTime[ configNUM_CORES ] = { 0UL }; /*< Holds the value of a timer/counter the last time a task was switched in. */
400
+
PRIVILEGED_DATAstaticvolatileuint32_tulTotalRunTime[ configNUM_CORES ] = { 0UL }; /*< Holds the total amount of execution time as defined by the run time counter clock. */
0 commit comments