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

Function xQueueSelectFromSet

queue.c:2947–2954  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2945#if ( configUSE_QUEUE_SETS == 1 )
2946
2947 QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet,
2948 TickType_t const xTicksToWait )
2949 {
2950 QueueSetMemberHandle_t xReturn = NULL;
2951
2952 ( void ) xQueueReceive( ( QueueHandle_t ) xQueueSet, &xReturn, xTicksToWait ); /*lint !e961 Casting from one typedef to another is not redundant. */
2953 return xReturn;
2954 }
2955
2956#endif /* configUSE_QUEUE_SETS */
2957/*-----------------------------------------------------------*/

Callers 1

MPU_xQueueSelectFromSetFunction · 0.85

Calls 1

xQueueReceiveFunction · 0.85

Tested by

no test coverage detected