Thread definition structure contains startup information of a thread. More...
#include <cmsis_os.h>
Public Attributes | |
| osThread * | data |
| uint32_t | instances |
| const char * | name |
| os_pthread | pthread |
| uint64_t * | stack |
| uint32_t | stacksize |
| osPriority | tpriority |
Definition at line 276 of file cmsis_os.h.
| osThread* os_thread_def::data |
Definition at line 283 of file cmsis_os.h.
Referenced by osThreadCreate().
| uint32_t os_thread_def::instances |
Maximum number of instances of that thread function.
Definition at line 281 of file cmsis_os.h.
Referenced by osThreadCreate().
| const char* os_thread_def::name |
Definition at line 278 of file cmsis_os.h.
Referenced by osThreadCreate().
| os_pthread os_thread_def::pthread |
Start address of thread function.
Definition at line 279 of file cmsis_os.h.
Referenced by osThreadCreate().
| uint64_t* os_thread_def::stack |
Definition at line 284 of file cmsis_os.h.
Referenced by osThreadCreate().
| uint32_t os_thread_def::stacksize |
Stack size requirements in bytes; 0 is default stack size.
Definition at line 282 of file cmsis_os.h.
Referenced by osThreadCreate().
| osPriority os_thread_def::tpriority |