FreeRTOS + 0/6 examples
SourceVu will show references to tskTaskControlBlock from the following samples and libraries:
 
Symbols
loading...
Files
loading...
SummarySyntaxRelatedExamplesReferencesInstancesLifecycle

Fields

Field
Declared as
Description
volatile StackType_t *
Points to the location of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT.
Used to link the task to certain cores. UBaseType_t must have greater than or equal to the number of bits as configNUMBER_OF_CORES.
The list that the state list item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ).
Used to reference a task from an event list.
The priority of the task. 0 is the lowest priority.
Points to the start of the stack.
volatile BaseType_t
Used to identify the core the task is running on, if the task is running. Otherwise, identifies the task's state - not running or yielding.
Task's attributes - currently used to identify the idle tasks.
Descriptive name given to the task when created. Facilitates debugging only.
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.
Stores a number specifically for use by third party trace code.
The priority last assigned to the task - used by the priority inheritance mechanism.
uint8_t

References

from 0/6 examples