Home
last modified time | relevance | path

Searched defs:tskTaskControlBlock (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-3.6.0/components/freertos/
Dtasks.c278 typedef struct tskTaskControlBlock /* The old naming convention is used to prevent breaking k… struct
280 …on of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */
283 …ttings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */
286 …st item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */
287 ListItem_t xEventListItem; /*< Used to reference a task from an event list. */
288 …eType_t uxPriority; /*< The priority of the task. 0 is the lowest priority. */
289 StackType_t * pxStack; /*< Points to the start of the stack. */
290 … Facilitates debugging only. */ /*lint !e971 Unqualified char types are allowed for strings and s…
291 BaseType_t xCoreID; /*< Core this task is pinned to */
294 StackType_t * pxEndOfStack; /*< Points to the highest valid address for the stack. */
[all …]