We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9db704c commit 78069a7Copy full SHA for 78069a7
1 file changed
queue.c
@@ -2261,6 +2261,8 @@ void vQueueDelete( QueueHandle_t xQueue )
2261
traceENTER_vQueueDelete( xQueue );
2262
2263
configASSERT( pxQueue );
2264
+ configASSERT( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) );
2265
+ configASSERT( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) );
2266
traceQUEUE_DELETE( pxQueue );
2267
2268
#if ( configQUEUE_REGISTRY_SIZE > 0 )
0 commit comments