mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/rtos2-utils.git
synced 2025-06-10 01:55:59 +00:00
Removed terminate flag from threads
This commit is contained in:
parent
c609dc81cc
commit
6bcca7af85
@ -14,7 +14,7 @@
|
||||
/**
|
||||
* @brief Number of bits in task notification flags used internally.
|
||||
*/
|
||||
#define STA_RTOS_MAX_BITS_THREAD_SYS_NOTIFY 2U
|
||||
#define STA_RTOS_MAX_BITS_THREAD_SYS_NOTIFY 1U
|
||||
/**
|
||||
* @brief Number of user usable bits in task notification flags.
|
||||
*/
|
||||
@ -34,15 +34,10 @@
|
||||
*/
|
||||
#define STA_RTOS_THREAD_FLAG_ERROR_CODE ( 1UL << 31 )
|
||||
|
||||
/**
|
||||
* @brief Request thread termination.
|
||||
*/
|
||||
#define STA_RTOS_THREAD_FLAG_TERMINATE ( 1UL << 30 )
|
||||
|
||||
/**
|
||||
* @brief Request thread start.
|
||||
*/
|
||||
#define STA_RTOS_THREAD_FLAG_START ( 1UL << 29 )
|
||||
#define STA_RTOS_THREAD_FLAG_START ( 1UL << 30 )
|
||||
|
||||
|
||||
#define STA_RTOS_THREAD_FLAGS_ERROR_CODE_BITS UINT32_C( 0x0000000F )
|
||||
|
Loading…
x
Reference in New Issue
Block a user