Discussed here: https://forums.freertos.org/t/tracing-improvements/20097
Adds a note to the (confusingly named) xTaskNumber member of TaskStatus_t
explaining that the value is different to the TaskNumber that can be
accessed using the vTaskSetTaskNumber and vTaskGetTaskNumber functions.
The value returned is actually the value of uxTCBNumber in the TCB.
TaskHandle_txHandle;/* The handle of the task to which the rest of the information in the structure relates. */
TaskHandle_txHandle;/* The handle of the task to which the rest of the information in the structure relates. */
constchar*pcTaskName;/* A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated! */
constchar*pcTaskName;/* A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated! */
UBaseType_txTaskNumber;/* A number unique to the task. */
UBaseType_txTaskNumber;/* A number unique to the task. Note that this is not the task number that may be modified using vTaskSetTaskNumber() and uxTaskGetTaskNumber(), but a separate TCB-specific and unique identifier automatically assigned on task generation. */
eTaskStateeCurrentState;/* The state in which the task existed when the structure was populated. */
eTaskStateeCurrentState;/* The state in which the task existed when the structure was populated. */
UBaseType_tuxCurrentPriority;/* The priority at which the task was running (may be inherited) when the structure was populated. */
UBaseType_tuxCurrentPriority;/* The priority at which the task was running (may be inherited) when the structure was populated. */
UBaseType_tuxBasePriority;/* The priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex. Only valid if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h. */
UBaseType_tuxBasePriority;/* The priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex. Only valid if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h. */