RTEMS CPU Kit with SuperCore
4.11.3
|
Internal structure used to manager per task variables. More...
#include <thread.h>
Data Fields | |
struct rtems_task_variable_tt * | next |
This field points to the next per task variable for this task. More... | |
void ** | ptr |
This field points to the physical memory location of this per task variable. | |
void * | gval |
This field is to the global value for this per task variable. More... | |
void * | tval |
This field is to this thread's value for this per task variable. More... | |
void(* | dtor )(void *) |
This field points to the destructor for this per task variable. More... | |
Internal structure used to manager per task variables.
This is the internal structure used to manager per Task Variables.
void(* rtems_task_variable_t::dtor) (void *) |
This field points to the destructor for this per task variable.
Referenced by _RTEMS_Tasks_Invoke_task_variable_dtor().
void* rtems_task_variable_t::gval |
This field is to the global value for this per task variable.
Referenced by _RTEMS_Tasks_Invoke_task_variable_dtor().
struct rtems_task_variable_tt* rtems_task_variable_t::next |
This field points to the next per task variable for this task.
void* rtems_task_variable_t::tval |
This field is to this thread's value for this per task variable.
Referenced by _RTEMS_Tasks_Invoke_task_variable_dtor().