| 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 | /*-----------------------------------------------------------*/ |
no test coverage detected