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

Function xQueueCreateSet

queue.c:2862–2869  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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/*-----------------------------------------------------------*/

Callers 1

MPU_xQueueCreateSetFunction · 0.85

Calls 1

xQueueGenericCreateFunction · 0.85

Tested by

no test coverage detected