Searched refs:thread_id (Results 1 – 3 of 3) sorted by relevance
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/RTOS2/RTX/Include/ |
D | rtx_evr.h | 414 extern void EvrRtxThreadError (osThreadId_t thread_id, int32_t status); 416 #define EvrRtxThreadError(thread_id, status) argument 438 extern void EvrRtxThreadCreated (osThreadId_t thread_id, uint32_t thread_addr, const char *name); 440 #define EvrRtxThreadCreated(thread_id, thread_addr, name) argument 449 extern void EvrRtxThreadGetName (osThreadId_t thread_id, const char *name); 451 #define EvrRtxThreadGetName(thread_id, name) argument 459 extern void EvrRtxThreadGetId (osThreadId_t thread_id); 461 #define EvrRtxThreadGetId(thread_id) argument 470 extern void EvrRtxThreadGetState (osThreadId_t thread_id, osThreadState_t state); 472 #define EvrRtxThreadGetState(thread_id, state) argument [all …]
|
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/RTOS2/Include/ |
D | cmsis_os2.h | 376 const char *osThreadGetName (osThreadId_t thread_id); 385 osThreadState_t osThreadGetState (osThreadId_t thread_id); 390 uint32_t osThreadGetStackSize (osThreadId_t thread_id); 395 uint32_t osThreadGetStackSpace (osThreadId_t thread_id); 401 osStatus_t osThreadSetPriority (osThreadId_t thread_id, osPriority_t priority); 406 osPriority_t osThreadGetPriority (osThreadId_t thread_id); 415 osStatus_t osThreadSuspend (osThreadId_t thread_id); 420 osStatus_t osThreadResume (osThreadId_t thread_id); 425 osStatus_t osThreadDetach (osThreadId_t thread_id); 430 osStatus_t osThreadJoin (osThreadId_t thread_id); [all …]
|
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/RTOS2/RTX/Source/ |
D | rtx_lib.h | 60 __STATIC_INLINE os_thread_t *osRtxThreadId (osThreadId_t thread_id) { in osRtxThreadId() argument 62 return ((os_thread_t *)thread_id); in osRtxThreadId()
|