mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/rtos2-utils.git
synced 2025-08-06 11:07:34 +00:00
Added specification of stack and control block size for RtosThread
This commit is contained in:
@@ -77,8 +77,10 @@ namespace sta
|
||||
*
|
||||
* @param name The thread's name. Will be used for debugging.
|
||||
* @param prio The thread's priority.
|
||||
* @param stack_size The thread's stack size. Default of 0 refers to the RTOS2 default stack size specified in the IOC.
|
||||
* @param cb_size The thread's control block size. Default of 0 refers to the RTOS2 default control block size specified in the IOC.
|
||||
*/
|
||||
RtosThread(const char* name, osPriority_t prio);
|
||||
RtosThread(const char* name, osPriority_t prio, uint32_t stack_size = 0, uint32_t cb_size = 0);
|
||||
|
||||
/**
|
||||
* @brief Get the currently running instance.
|
||||
|
Reference in New Issue
Block a user