Home
last modified time | relevance | path

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

/hal_infineon-latest/abstraction-rtos/source/COMPONENT_FREERTOS/
Dcyabs_rtos_freertos.c486 mutex->mutex_handle = recursive in cy_rtos_mutex_init()
489 if (mutex->mutex_handle == NULL) in cy_rtos_mutex_init()
519 ? xSemaphoreTakeRecursive(mutex->mutex_handle, ticks) in cy_rtos_mutex_get()
520 : xSemaphoreTake(mutex->mutex_handle, ticks); in cy_rtos_mutex_get()
551 ? xSemaphoreGiveRecursive(mutex->mutex_handle) in cy_rtos_mutex_set()
552 : xSemaphoreGive(mutex->mutex_handle); in cy_rtos_mutex_set()
578 vSemaphoreDelete(mutex->mutex_handle); in cy_rtos_mutex_deinit()
/hal_infineon-latest/abstraction-rtos/include/COMPONENT_FREERTOS/
Dcyabs_rtos_impl.h79 SemaphoreHandle_t mutex_handle; member