From 740b86bf6dc3c18f87412be578f7c578c3a797ed Mon Sep 17 00:00:00 2001 From: Ching-Hsin Lee Date: Thu, 31 Aug 2023 21:53:16 +0800 Subject: [PATCH] Update format --- tasks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.c b/tasks.c index fe0c2eac55..2af97afa5c 100644 --- a/tasks.c +++ b/tasks.c @@ -310,7 +310,7 @@ typedef struct tskTaskControlBlock /* The old naming convention is used to UBaseType_t uxPriority; /**< The priority of the task. 0 is the lowest priority. */ StackType_t * pxStack; /**< Points to the start of the stack. */ #if ( configNUMBER_OF_CORES > 1 ) - volatile BaseType_t xTaskRunState; /**< 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. */ + volatile BaseType_t xTaskRunState; /**< 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. */ UBaseType_t uxTaskAttributes; /**< Task's attributes - currently used to identify the idle tasks. */ #endif char pcTaskName[ 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. */