Searched refs:woken (Results 1 – 8 of 8) sorted by relevance
40 static void lwip_stop_socket_select_isr(void *sem, BaseType_t *woken) in lwip_stop_socket_select_isr() argument42 if (sys_sem_signal_isr(sem) && woken) { in lwip_stop_socket_select_isr()43 *woken = pdTRUE; in lwip_stop_socket_select_isr()
165 BaseType_t woken = pdFALSE; in sys_sem_signal_isr() local166 xSemaphoreGiveFromISR(*sem, &woken); in sys_sem_signal_isr()167 return woken == pdTRUE; in sys_sem_signal_isr()
241 void (*stop_socket_select_isr)(void *sem, BaseType_t *woken);432 void esp_vfs_select_triggered_isr(esp_vfs_select_sem_t sem, BaseType_t *woken);
12 …e that the ULP program keeps running and monitoring the input signal even when the SoC is woken up.
1083 void esp_vfs_select_triggered_isr(esp_vfs_select_sem_t sem, BaseType_t *woken) in esp_vfs_select_triggered_isr() argument1086 xSemaphoreGiveFromISR(sem.sem, woken); in esp_vfs_select_triggered_isr()1096 vfs->vfs.stop_socket_select_isr(sem.sem, woken); in esp_vfs_select_triggered_isr()
85 …back_t`. Keep in mind, the callback should return true if there's some high priority task woken up.
13 * As the SoC has freshly woken from sleep, most of the peripherals are in reset states. The SPI fla…
2141 + A task being woken by an event will now preempt the currently running task