Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tasks.c
Original file line number Diff line number Diff line change
Expand Up @@ -5731,9 +5731,9 @@ BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut,
if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) )
{
/* The tick count is greater than the time at which
* vTaskSetTimeout() was called, but has also overflowed since
* vTaskSetTimeOut() was called. It must have wrapped all the way
* around and gone past again. This passed since vTaskSetTimeout()
* vTaskSetTimeOutState() was called, but has also overflowed since
* vTaskSetTimeOutState() was called. It must have wrapped all the way
* around and gone past again. This passed since vTaskSetTimeOutState()
* was called. */
xReturn = pdTRUE;
*pxTicksToWait = ( TickType_t ) 0;
Expand Down