| 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 | /*-----------------------------------------------------------*/ |
nothing calls this directly
no test coverage detected