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
/* Indicates that the task is actively running but scheduled to yield. */
269
-
#definetaskTASK_YIELDING ( TaskRunning_t ) ( -2 )
266
+
#definetaskTASK_YIELDING ( BaseType_t ) ( -2 )
270
267
271
268
/* Returns pdTRUE if the task is actively running and not scheduled to yield. */
272
269
#if ( configNUMBER_OF_CORES==1 )
@@ -313,7 +310,7 @@ typedef struct tskTaskControlBlock /* The old naming convention is used to
313
310
UBaseType_tuxPriority; /**< The priority of the task. 0 is the lowest priority. */
314
311
StackType_t*pxStack; /**< Points to the start of the stack. */
315
312
#if ( configNUMBER_OF_CORES>1 )
316
-
volatileTaskRunning_txTaskRunState; /**< Used to identify the core the task is running on, if the task is running. Otherwise, identifies the task's state - not running or yielding. */
313
+
volatileBaseType_txTaskRunState; /**< Used to identify the core the task is running on, if the task is running. Otherwise, identifies the task's state - not running or yielding. */
317
314
UBaseType_tuxTaskAttributes; /**< Task's attributes - currently used to identify the idle tasks. */
318
315
#endif
319
316
charpcTaskName[ configMAX_TASK_NAME_LEN ]; /**< Descriptive name given to the task when created. Facilitates debugging only. *//*lint !e971 Unqualified char types are allowed for strings and single characters only. */
0 commit comments