Home
last modified time | relevance | path

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

/Zephyr-Core-3.7.0/modules/hal_infineon/abstraction-rtos/source/COMPONENT_ZEPHYR/
Dcyabs_rtos_zephyr.c109 cy_rtos_error_t status_internal = 0; in cy_rtos_create_thread() local
146 status_internal = k_thread_name_set(my_tid, name); in cy_rtos_create_thread()
152 if ((my_tid == NULL) || ((status_internal != 0) && (status_internal != -ENOSYS))) { in cy_rtos_create_thread()
260 cy_rtos_error_t status_internal; in cy_rtos_join_thread() local
267 status_internal = k_thread_join(&(*thread)->z_thread, K_FOREVER); in cy_rtos_join_thread()
268 status = error_converter(status_internal); in cy_rtos_join_thread()
295 cy_rtos_error_t status_internal; in cy_rtos_wait_thread_notification() local
299 status_internal = k_sleep(K_FOREVER); in cy_rtos_wait_thread_notification()
301 status_internal = k_msleep((int32_t)timeout_ms); in cy_rtos_wait_thread_notification()
302 if (status_internal == 0) { in cy_rtos_wait_thread_notification()
[all …]