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
Copy file name to clipboardExpand all lines: tasks.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -310,7 +310,7 @@ typedef struct tskTaskControlBlock /* The old naming convention is used to
310
310
UBaseType_tuxPriority; /**< The priority of the task. 0 is the lowest priority. */
311
311
StackType_t*pxStack; /**< Points to the start of the stack. */
312
312
#if ( configNUMBER_OF_CORES>1 )
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. */
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. */
314
314
UBaseType_tuxTaskAttributes; /**< Task's attributes - currently used to identify the idle tasks. */
315
315
#endif
316
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