Home
last modified time | relevance | path

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

/Zephyr-4.3.0/kernel/
Ddynamic.c124 if (!(z_is_thread_state_set(data.tid, _THREAD_DUMMY) || in z_impl_k_thread_stack_free()
125 z_is_thread_state_set(data.tid, _THREAD_DEAD))) { in z_impl_k_thread_stack_free()
/Zephyr-4.3.0/kernel/include/
Dkthread.h135 static inline bool z_is_thread_state_set(const struct k_thread *thread, uint32_t state) in z_is_thread_state_set() function
142 return z_is_thread_state_set(thread, _THREAD_QUEUED); in z_is_thread_queued()
/Zephyr-4.3.0/tests/kernel/smp/src/
Dmain.c830 zassert_true(z_is_thread_state_set(&t2, _THREAD_DEAD)); in ZTEST()