Home
last modified time | relevance | path

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

/bsp/allwinner/libraries/sunxi-hal/hal/source/sdmmc/osal/os/FreeRTOS/
A Dos_timer.c168 BaseType_t taskWoken; in OS_TimerStart() local
173 taskWoken = pdFALSE; in OS_TimerStart()
174 ret = xTimerStartFromISR(timer->handle, &taskWoken); in OS_TimerStart()
179 portEND_SWITCHING_ISR(taskWoken); in OS_TimerStart()
210 BaseType_t taskWoken; in OS_TimerChangePeriod() local
215 taskWoken = pdFALSE; in OS_TimerChangePeriod()
221 portEND_SWITCHING_ISR(taskWoken); in OS_TimerChangePeriod()
241 BaseType_t taskWoken; in OS_TimerStop() local
246 taskWoken = pdFALSE; in OS_TimerStop()
247 ret = xTimerStopFromISR(timer->handle, &taskWoken); in OS_TimerStop()
[all …]
A Dos_queue.c99 BaseType_t taskWoken; in OS_QueueSend() local
104 taskWoken = pdFALSE; in OS_QueueSend()
105 ret = xQueueSendFromISR(queue->handle, item, &taskWoken); in OS_QueueSend()
110 portEND_SWITCHING_ISR(taskWoken); in OS_QueueSend()
137 BaseType_t taskWoken; in OS_QueueReceive() local
142 taskWoken = pdFALSE; in OS_QueueReceive()
143 ret = xQueueReceiveFromISR(queue->handle, item, &taskWoken); in OS_QueueReceive()
148 portEND_SWITCHING_ISR(taskWoken); in OS_QueueReceive()
A Dos_semaphore.c110 BaseType_t taskWoken; in OS_SemaphoreWait() local
119 taskWoken = pdFALSE; in OS_SemaphoreWait()
120 ret = xSemaphoreTakeFromISR(sem->handle, &taskWoken); in OS_SemaphoreWait()
125 portEND_SWITCHING_ISR(taskWoken); in OS_SemaphoreWait()
145 BaseType_t taskWoken; in OS_SemaphoreRelease() local
153 taskWoken = pdFALSE; in OS_SemaphoreRelease()
154 ret = xSemaphoreGiveFromISR(sem->handle, &taskWoken); in OS_SemaphoreRelease()
159 portEND_SWITCHING_ISR(taskWoken); in OS_SemaphoreRelease()

Completed in 6 milliseconds