Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/esp_event/
Desp_event.c153 xSemaphoreTake(loop->profiling_mutex, portMAX_DELAY); in handler_execute()
158 xSemaphoreGive(loop->profiling_mutex); in handler_execute()
482 loop->profiling_mutex = xSemaphoreCreateMutex(); in esp_event_loop_create()
483 if (loop->profiling_mutex == NULL) { in esp_event_loop_create()
535 if (loop->profiling_mutex != NULL) { in esp_event_loop_create()
536 vSemaphoreDelete(loop->profiling_mutex); in esp_event_loop_create()
646 SemaphoreHandle_t loop_profiling_mutex = loop->profiling_mutex; in esp_event_loop_delete()
652 xSemaphoreTake(loop->profiling_mutex, portMAX_DELAY); in esp_event_loop_delete()
/hal_espressif-3.6.0/components/esp_event/private_include/
Desp_event_internal.h89 … SemaphoreHandle_t profiling_mutex; /**< mutex used for profiliing */ member