Replace the following code that was used to force an assert:

configASSERT( pxTCB->ulNotifiedValue[ uxIndexToNotify ] == ~0UL );

with:
configASSERT( xTickCount == ( TickType_t ) 0 );

Because the former generates a warning on 64-bit architectures.
This commit is contained in:
RichardBarry 2020-09-06 21:15:06 -07:00
parent a730a56a14
commit e46dd1c529

View file

@ -5377,3 +5377,4 @@ static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait,
#endif
#endif /* if ( configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H == 1 ) */