Comment: fix code comment for xTaskAbortDelay

This commit is contained in:
Alfred Gedeon 2021-03-05 08:44:41 -08:00
parent 98eba938e2
commit 906bb20633

View file

@ -2695,7 +2695,7 @@ BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp )
{ {
/* Preemption is on, but a context switch should only be /* Preemption is on, but a context switch should only be
* performed if the unblocked task has a priority that is * performed if the unblocked task has a priority that is
* equal to or higher than the currently executing task. */ * higher than the currently executing task. */
if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) if( pxTCB->uxPriority > pxCurrentTCB->uxPriority )
{ {
/* Pend the yield to be performed when the scheduler /* Pend the yield to be performed when the scheduler