ChibiOS
21.6.0
|
Type of a thread descriptor. More...
#include <chthreads.h>
Data Fields | |
const char * | name |
Thread name. More... | |
stkalign_t * | wbase |
Pointer to the working area base. More... | |
stkalign_t * | wend |
Pointer to the working area end. More... | |
tprio_t | prio |
Thread priority. More... | |
tfunc_t | funcp |
Thread function pointer. More... | |
void * | arg |
Thread argument. More... | |
os_instance_t * | instance |
OS instance affinity or NULL for current one. More... | |
Type of a thread descriptor.
Definition at line 57 of file chthreads.h.
const char* thread_descriptor_t::name |
Thread name.
Definition at line 61 of file chthreads.h.
stkalign_t* thread_descriptor_t::wbase |
Pointer to the working area base.
Definition at line 65 of file chthreads.h.
Referenced by chThdCreate(), chThdCreateI(), and chThdCreateSuspended().
stkalign_t* thread_descriptor_t::wend |
Pointer to the working area end.
Definition at line 69 of file chthreads.h.
Referenced by chThdCreate(), chThdCreateI(), and chThdCreateSuspended().
tprio_t thread_descriptor_t::prio |
tfunc_t thread_descriptor_t::funcp |
Thread function pointer.
Definition at line 77 of file chthreads.h.
Referenced by chSysInit(), and chThdCreateI().
void* thread_descriptor_t::arg |
Thread argument.
Definition at line 81 of file chthreads.h.
os_instance_t* thread_descriptor_t::instance |
OS instance affinity or NULL
for current one.
Definition at line 86 of file chthreads.h.