MCPcopy Create free account
hub / github.com/FreeRTOS/FreeRTOS-Kernel / xQueueSelectFromSetFromISR

Function xQueueSelectFromSetFromISR

queue.c:2961–2967  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2959#if ( configUSE_QUEUE_SETS == 1 )
2960
2961 QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet )
2962 {
2963 QueueSetMemberHandle_t xReturn = NULL;
2964
2965 ( void ) xQueueReceiveFromISR( ( QueueHandle_t ) xQueueSet, &xReturn, NULL ); /*lint !e961 Casting from one typedef to another is not redundant. */
2966 return xReturn;
2967 }
2968
2969#endif /* configUSE_QUEUE_SETS */
2970/*-----------------------------------------------------------*/

Callers

nothing calls this directly

Calls 1

xQueueReceiveFromISRFunction · 0.85

Tested by

no test coverage detected