ChibiOS/RT  5.1.0
thread_descriptor_t Struct Reference

Type of a thread descriptor. More...

#include <chthreads.h>

Collaboration diagram for thread_descriptor_t:
Collaboration graph

Data Fields

const char * name
 Thread name. More...
 
stkalign_t * wbase
 Pointer to the working area base. More...
 
stkalign_t * wend
 End of the working area. More...
 
tprio_t prio
 Thread priority. More...
 
tfunc_t funcp
 Thread function pointer. More...
 
void * arg
 Thread argument. More...
 

Detailed Description

Type of a thread descriptor.

Definition at line 57 of file chthreads.h.

Field Documentation

const char* thread_descriptor_t::name

Thread name.

Definition at line 61 of file chthreads.h.

Referenced by chThdCreateSuspendedI().

stkalign_t* thread_descriptor_t::wbase

Pointer to the working area base.

Definition at line 65 of file chthreads.h.

Referenced by chThdCreate(), chThdCreateSuspended(), and chThdCreateSuspendedI().

stkalign_t* thread_descriptor_t::wend

End of the working area.

Definition at line 69 of file chthreads.h.

Referenced by chThdCreate(), chThdCreateSuspended(), and chThdCreateSuspendedI().

tprio_t thread_descriptor_t::prio

Thread priority.

Definition at line 73 of file chthreads.h.

Referenced by chThdCreateSuspendedI().

tfunc_t thread_descriptor_t::funcp

Thread function pointer.

Definition at line 77 of file chthreads.h.

Referenced by chThdCreateSuspendedI().

void* thread_descriptor_t::arg

Thread argument.

Definition at line 81 of file chthreads.h.

Referenced by chThdCreateSuspendedI().