Searched refs:taskWoken (Results 1 – 3 of 3) sorted by relevance
168 BaseType_t taskWoken; in OS_TimerStart() local173 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() local215 taskWoken = pdFALSE; in OS_TimerChangePeriod()221 portEND_SWITCHING_ISR(taskWoken); in OS_TimerChangePeriod()241 BaseType_t taskWoken; in OS_TimerStop() local246 taskWoken = pdFALSE; in OS_TimerStop()247 ret = xTimerStopFromISR(timer->handle, &taskWoken); in OS_TimerStop()[all …]
99 BaseType_t taskWoken; in OS_QueueSend() local104 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() local142 taskWoken = pdFALSE; in OS_QueueReceive()143 ret = xQueueReceiveFromISR(queue->handle, item, &taskWoken); in OS_QueueReceive()148 portEND_SWITCHING_ISR(taskWoken); in OS_QueueReceive()
110 BaseType_t taskWoken; in OS_SemaphoreWait() local119 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() local153 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