| 2860 | #if ( ( configUSE_QUEUE_SETS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) |
| 2861 | |
| 2862 | QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength ) |
| 2863 | { |
| 2864 | QueueSetHandle_t pxQueue; |
| 2865 | |
| 2866 | pxQueue = xQueueGenericCreate( uxEventQueueLength, ( UBaseType_t ) sizeof( Queue_t * ), queueQUEUE_TYPE_SET ); |
| 2867 | |
| 2868 | return pxQueue; |
| 2869 | } |
| 2870 | |
| 2871 | #endif /* configUSE_QUEUE_SETS */ |
| 2872 | /*-----------------------------------------------------------*/ |
no test coverage detected