@@ -647,7 +647,7 @@ typedef struct QueueDefinition * QueueSetMemberHandle_t;
647647 * \defgroup xQueueSend xQueueSend
648648 * \ingroup QueueManagement
649649 */
650- BaseType_t xQueueGenericSend ( QueueHandle_t xQueue , const void * const pvItemToQueue , TickType_t xTicksToWait , const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION ;
650+ BaseType_t xQueueGenericSend ( QueueHandle_t xQueue , const void * _ecv_null const pvItemToQueue , TickType_t xTicksToWait , const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION ;
651651
652652/**
653653 * queue. h
@@ -1412,7 +1412,7 @@ BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTi
14121412 * these functions directly.
14131413 */
14141414QueueHandle_t xQueueCreateMutex ( const uint8_t ucQueueType ) PRIVILEGED_FUNCTION ;
1415- QueueHandle_t xQueueCreateMutexStatic ( const uint8_t ucQueueType , StaticQueue_t * pxStaticQueue ) PRIVILEGED_FUNCTION ;
1415+ QueueHandle_t xQueueCreateMutexStatic ( const uint8_t ucQueueType , StaticQueue_t * _ecv_from pxStaticQueue ) PRIVILEGED_FUNCTION ;
14161416QueueHandle_t xQueueCreateCountingSemaphore ( const UBaseType_t uxMaxCount , const UBaseType_t uxInitialCount ) PRIVILEGED_FUNCTION ;
14171417QueueHandle_t xQueueCreateCountingSemaphoreStatic ( const UBaseType_t uxMaxCount , const UBaseType_t uxInitialCount , StaticQueue_t * pxStaticQueue ) PRIVILEGED_FUNCTION ;
14181418BaseType_t xQueueSemaphoreTake ( QueueHandle_t xQueue , TickType_t xTicksToWait ) PRIVILEGED_FUNCTION ;
@@ -1502,7 +1502,7 @@ BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION;
15021502 * RTOS objects that use the queue structure as their base.
15031503 */
15041504#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
1505- QueueHandle_t xQueueGenericCreateStatic ( const UBaseType_t uxQueueLength , const UBaseType_t uxItemSize , uint8_t * pucQueueStorage , StaticQueue_t * pxStaticQueue , const uint8_t ucQueueType ) PRIVILEGED_FUNCTION ;
1505+ QueueHandle_t xQueueGenericCreateStatic ( const UBaseType_t uxQueueLength , const UBaseType_t uxItemSize , uint8_t * _ecv_array _ecv_null pucQueueStorage , StaticQueue_t * _ecv_from pxStaticQueue , const uint8_t ucQueueType ) PRIVILEGED_FUNCTION ;
15061506#endif
15071507
15081508/*
0 commit comments