Home
last modified time | relevance | path

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

/lvgl-latest/src/osal/
Dlv_freertos.c222 xSemaphoreTake(pxCond->xSyncMutex, portMAX_DELAY); in lv_thread_sync_wait()
232 BaseType_t xMutexStatus = xSemaphoreGive(pxCond->xSyncMutex); in lv_thread_sync_wait()
241 xSemaphoreTake(pxCond->xSyncMutex, portMAX_DELAY); in lv_thread_sync_wait()
269 xSemaphoreGive(pxCond->xSyncMutex); in lv_thread_sync_wait()
298 xSemaphoreTake(pxCond->xSyncMutex, portMAX_DELAY); in lv_thread_sync_signal()
326 xSemaphoreGive(pxCond->xSyncMutex); in lv_thread_sync_signal()
337 vSemaphoreDelete(pxCond->xSyncMutex); in lv_thread_sync_delete()
486 pxCond->xSyncMutex = xSemaphoreCreateMutex(); in prvCondInit()
489 if(pxCond->xSyncMutex == NULL) { in prvCondInit()
Dlv_freertos.h64 …SemaphoreHandle_t xSyncMutex; /**< Threads take this mutex before accessing the condition … member