Home
last modified time | relevance | path

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

/external/pigweed/pw_sync_freertos/public/pw_sync_freertos/
Dbinary_semaphore_inline.h37 BaseType_t woke_higher_task = pdFALSE; in release() local
40 xSemaphoreGiveFromISR(&native_type_, &woke_higher_task); in release()
41 portYIELD_FROM_ISR(woke_higher_task); in release()
64 BaseType_t woke_higher_task = pdFALSE; in try_acquire() local
66 xSemaphoreTakeFromISR(&native_type_, &woke_higher_task) == pdTRUE; in try_acquire()
67 portYIELD_FROM_ISR(woke_higher_task); in try_acquire()
Dcounting_semaphore_inline.h54 BaseType_t woke_higher_task = pdFALSE; in try_acquire() local
56 xSemaphoreTakeFromISR(&native_type_, &woke_higher_task) == pdTRUE; in try_acquire()
57 portYIELD_FROM_ISR(woke_higher_task); in try_acquire()
/external/pigweed/pw_sync_freertos/
Dcounting_semaphore.cc42 BaseType_t woke_higher_task = pdFALSE; in release() local
44 xSemaphoreGiveFromISR(&native_type_, &woke_higher_task); in release()
46 portYIELD_FROM_ISR(woke_higher_task); in release()