Searched defs:tskTaskControlBlock (Results 1 – 3 of 3) sorted by relevance
210 …typedef struct tskTaskControlBlock /* The old naming convention is used to prevent breaking … struct212 …on of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */215 …ttings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */218 …st item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */219 … ListItem_t xEventListItem; /*< Used to reference a task from an event list. */220 …eType_t uxPriority; /*< The priority of the task. 0 is the lowest priority. */221 StackType_t * pxStack; /*< Points to the start of the stack. */222 …ted. Facilitates debugging only. */ /*lint !e971 Unqualified char types are allowed for strings a…225 StackType_t * pxEndOfStack; /*< Points to the highest valid address for the stack. */229 …critical section nesting depth for ports that do not maintain their own count in the port layer. */[all …]
358 typedef struct tskTaskControlBlock /* The old naming convention is used to prevent breaking k… struct360 …on of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */363 …ttings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */367 …es. UBaseType_t must have greater than or equal to the number of bits as configNUMBER_OF_CORES. */370 …st item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */371 ListItem_t xEventListItem; /**< Used to reference a task from an event list. */372 …Type_t uxPriority; /**< The priority of the task. 0 is the lowest priority. */373 StackType_t * pxStack; /**< Points to the start of the stack. */375 …ng on, if the task is running. Otherwise, identifies the task's state - not running or yielding. */376 … uxTaskAttributes; /**< Task's attributes - currently used to identify the idle tasks. */[all …]