typedefstruct/* The old naming convention is used to prevent breaking kernel aware debuggers. */
{
volatileStackType_t*pxTopOfStack;/*< Points to the location of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */
#if ( portUSING_MPU_WRAPPERS == 1 )
xMPU_SETTINGSxMPUSettings;/*< The MPU settings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */
#endif
ListItem_txStateListItem;/*< The list that the state list item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */
ListItem_txEventListItem;/*< Used to reference a task from an event list. */
UBaseType_tuxPriority;/*< The priority of the task. 0 is the lowest priority. */
StackType_t*pxStack;/*< Points to the start of the stack. */
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. */
StackType_t*pxEndOfStack;/*< Points to the highest valid address for the stack. */
#endif
#if ( portCRITICAL_NESTING_IN_TCB == 1 )
UBaseType_tuxCriticalNesting;/*< Holds the critical section nesting depth for ports that do not maintain their own count in the port layer. */
#endif
#if ( configUSE_TRACE_FACILITY == 1 )
UBaseType_tuxTCBNumber;/*< Stores a number that increments each time a TCB is created. It allows debuggers to determine when a task has been deleted and then recreated. */
UBaseType_tuxTaskNumber;/*< Stores a number specifically for use by third party trace code. */
#endif
#if ( configUSE_MUTEXES == 1 )
UBaseType_tuxBasePriority;/*< The priority last assigned to the task - used by the priority inheritance mechanism. */