Home
last modified time | relevance | path

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

/hal_nxp-latest/mcux/mcux-sdk/components/osa/
Dfsl_os_abstraction_free_rtos.c644 portBASE_TYPE taskToWake = (portBASE_TYPE)pdFALSE; in OSA_SemaphorePost() local
646 if (((BaseType_t)1) == (BaseType_t)xSemaphoreGiveFromISR(sem, &taskToWake)) in OSA_SemaphorePost()
648 portYIELD_FROM_ISR(((bool)(taskToWake))); in OSA_SemaphorePost()
838 portBASE_TYPE taskToWake = (portBASE_TYPE)pdFALSE; in OSA_EventSet() local
850 …ult = xEventGroupSetBitsFromISR(pEventStruct->eventHandle, (event_flags_t)flagsToSet, &taskToWake); in OSA_EventSet()
852 …ventGroupSetBitsFromISR((void *)pEventStruct->eventHandle, (event_flags_t)flagsToSet, &taskToWake); in OSA_EventSet()
856 portYIELD_FROM_ISR(((bool)(taskToWake))); in OSA_EventSet()
1076 portBASE_TYPE taskToWake = (portBASE_TYPE)pdFALSE; in OSA_MsgQPut() local
1081 if (((BaseType_t)1) == (BaseType_t)xQueueSendToBackFromISR(handler, pMessage, &taskToWake)) in OSA_MsgQPut()
1083 portYIELD_FROM_ISR(((bool)(taskToWake))); in OSA_MsgQPut()
/hal_nxp-latest/mcux/mcux-sdk/components/srtm/port/
Dsrtm_sem_freertos.c52 portBASE_TYPE taskToWake = pdFALSE; in SRTM_Sem_Post() local
55 if (xSemaphoreGiveFromISR(sem, &taskToWake) == pdPASS) in SRTM_Sem_Post()
57 portYIELD_FROM_ISR(taskToWake); in SRTM_Sem_Post()