RTEMS CPU Kit with SuperCore  4.11.3
Data Fields
rtems_task_variable_t Struct Reference

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...
 

Detailed Description

Internal structure used to manager per task variables.

This is the internal structure used to manager per Task Variables.

Field Documentation

◆ dtor

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().

◆ gval

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().

◆ next

struct rtems_task_variable_tt* rtems_task_variable_t::next

This field points to the next per task variable for this task.

◆ tval

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().


The documentation for this struct was generated from the following file: