Lines Matching defs:tskTaskControlBlock
278 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. */
298 …critical section nesting depth for ports that do not maintain their own count in the port layer. */
302 …B is created. It allows debuggers to determine when a task has been deleted and then recreated. */
303 … UBaseType_t uxTaskNumber; /*< Stores a number specifically for use by third party trace code. */
307 …iority; /*< The priority last assigned to the task - used by the priority inheritance mechanism. */
308 UBaseType_t uxMutexesHeld;
312 TaskHookFunction_t pxTaskTag;
316 void * pvThreadLocalStoragePointers[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ];
318 …lbackFunction_t pvThreadLocalStoragePointersDelCallback[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ];
323 …int32_t ulRunTimeCounter; /*< Stores the amount of time the task has spent in the Running state. */
338 struct _reent xNewLib_reent;
342 volatile uint32_t ulNotifiedValue[ configTASK_NOTIFICATION_ARRAY_ENTRIES ];
343 volatile uint8_t ucNotifyState[ configTASK_NOTIFICATION_ARRAY_ENTRIES ];
349 …to pdTRUE if the task is a statically allocated to ensure no attempt is made to free the memory. */
353 uint8_t ucDelayAborted;
357 int iTaskErrno;