Home
last modified time | relevance | path

Searched refs:is_cmsis_rtos_v2_thread (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/subsys/portability/cmsis_rtos_v2/
Dthread.c65 void *is_cmsis_rtos_v2_thread(void *thread_id) in is_cmsis_rtos_v2_thread() function
216 if (is_cmsis_rtos_v2_thread(thread_id) == NULL) { in osThreadGetName()
246 if (k_is_in_isr() || (tid == NULL) || (is_cmsis_rtos_v2_thread(tid) == NULL) || in osThreadGetPriority()
262 if ((tid == NULL) || (is_cmsis_rtos_v2_thread(tid) == NULL) || in osThreadSetPriority()
288 if (k_is_in_isr() || (tid == NULL) || (is_cmsis_rtos_v2_thread(tid) == NULL)) { in osThreadGetState()
340 __ASSERT(is_cmsis_rtos_v2_thread(tid), ""); in osThreadGetStackSize()
357 __ASSERT(is_cmsis_rtos_v2_thread(tid), ""); in osThreadGetStackSpace()
375 if ((tid == NULL) || (is_cmsis_rtos_v2_thread(tid) == NULL)) { in osThreadSuspend()
399 if ((tid == NULL) || (is_cmsis_rtos_v2_thread(tid) == NULL)) { in osThreadResume()
424 if ((tid == NULL) || (is_cmsis_rtos_v2_thread(tid) == NULL)) { in osThreadDetach()
[all …]
Dwrapper.h22 extern void *is_cmsis_rtos_v2_thread(void *thread_id);
Dthread_flags.c21 if ((thread_id == NULL) || (is_cmsis_rtos_v2_thread(thread_id) == NULL) || in osThreadFlagsSet()