|
ChibiOS 21.11.5
|
Type of a thread descriptor. More...
#include <chthreads.h>

Data Fields | |
| const char * | name |
| Thread name. | |
| stkalign_t * | wbase |
| Pointer to the working area base. | |
| stkalign_t * | wend |
| Pointer to the working area end. | |
| tprio_t | prio |
| Thread priority. | |
| tfunc_t | funcp |
| Thread function pointer. | |
| void * | arg |
| Thread argument. | |
| os_instance_t * | instance |
OS instance affinity or NULL for current one. | |
Type of a thread descriptor.
Definition at line 56 of file chthreads.h.
| const char* thread_descriptor_t::name |
| stkalign_t* thread_descriptor_t::wbase |
Pointer to the working area base.
Definition at line 64 of file chthreads.h.
Referenced by chInstanceObjectInit(), chThdCreate(), chThdCreateI(), chThdCreateSuspended(), and chThdCreateSuspendedI().
| stkalign_t* thread_descriptor_t::wend |
Pointer to the working area end.
Definition at line 68 of file chthreads.h.
Referenced by chInstanceObjectInit(), chThdCreate(), chThdCreateI(), chThdCreateSuspended(), and chThdCreateSuspendedI().
| tprio_t thread_descriptor_t::prio |
Thread priority.
Definition at line 72 of file chthreads.h.
Referenced by chThdCreateI(), and chThdCreateSuspendedI().
| tfunc_t thread_descriptor_t::funcp |
Thread function pointer.
Definition at line 76 of file chthreads.h.
Referenced by chSysInit(), chThdCreateI(), and chThdCreateSuspendedI().
| void* thread_descriptor_t::arg |
Thread argument.
Definition at line 80 of file chthreads.h.
Referenced by chThdCreateI(), and chThdCreateSuspendedI().
| os_instance_t* thread_descriptor_t::instance |
OS instance affinity or NULL for current one.
Definition at line 85 of file chthreads.h.
Referenced by chThdCreateSuspendedI().