Skip to content

Commit 4b5d1e4

Browse files
authored
Comment: fix code comment for xTaskAbortDelay (#272)
1 parent 98eba93 commit 4b5d1e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2694,8 +2694,8 @@ BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp )
26942694
#if ( configUSE_PREEMPTION == 1 )
26952695
{
26962696
/* Preemption is on, but a context switch should only be
2697-
* performed if the unblocked task has a priority that is
2698-
* equal to or higher than the currently executing task. */
2697+
* performed if the unblocked task has a priority that is
2698+
* higher than the currently executing task. */
26992699
if( pxTCB->uxPriority > pxCurrentTCB->uxPriority )
27002700
{
27012701
/* Pend the yield to be performed when the scheduler

0 commit comments

Comments
 (0)