ソースの整理中ですが、利用はできます。

Dependencies:   EthernetInterface HttpServer TextLCD mbed-rpc mbed-rtos mbed Socket lwip-eth lwip-sys lwip

Embed: (wiki syntax)

« Back to documentation index

os_thread_def Struct Reference

os_thread_def Struct Reference

Thread Definition structure contains startup information of a thread. More...

#include <cmsis_os.h>

Data Fields

os_pthread pthread
 start address of thread function
osPriority tpriority
 initial thread priority
uint32_t stacksize
 stack size requirements in bytes
unsigned char * stack_pointer
 pointer to the stack memory block

Detailed Description

Thread Definition structure contains startup information of a thread.

Note:
CAN BE CHANGED: os_thread_def is implementation specific in every CMSIS-RTOS.

Definition at line 240 of file cmsis_os.h.


Field Documentation

os_pthread pthread

start address of thread function

Definition at line 241 of file cmsis_os.h.

unsigned char* stack_pointer

pointer to the stack memory block

Definition at line 244 of file cmsis_os.h.

uint32_t stacksize

stack size requirements in bytes

Definition at line 243 of file cmsis_os.h.

osPriority tpriority

initial thread priority

Definition at line 242 of file cmsis_os.h.