mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-07-10 13:29:45 -04:00
Merge 521aa2cd5c into d72263b404
This commit is contained in:
commit
cc438d339f
1 changed files with 2 additions and 0 deletions
2
queue.c
2
queue.c
|
|
@ -2261,6 +2261,8 @@ void vQueueDelete( QueueHandle_t xQueue )
|
|||
traceENTER_vQueueDelete( xQueue );
|
||||
|
||||
configASSERT( pxQueue );
|
||||
configASSERT( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) );
|
||||
configASSERT( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) );
|
||||
traceQUEUE_DELETE( pxQueue );
|
||||
|
||||
#if ( configQUEUE_REGISTRY_SIZE > 0 )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue