mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-01-21 09:10:37 -05:00
Merge branch 'main' into port/win32-mingw-timeapi-fix
This commit is contained in:
commit
0052fde7a3
1 changed files with 2 additions and 1 deletions
|
|
@ -897,7 +897,8 @@ void vTaskDelay( const TickType_t xTicksToDelay ) PRIVILEGED_FUNCTION;
|
|||
*
|
||||
* @return Value which can be used to check whether the task was actually delayed.
|
||||
* Will be pdTRUE if the task way delayed and pdFALSE otherwise. A task will not
|
||||
* be delayed if the next expected wake time is in the past.
|
||||
* be delayed if the next expected wake time is in the past. This prevents periodic
|
||||
* tasks from accumulating delays and allows them to resume their regular timing pattern.
|
||||
*
|
||||
* Example usage:
|
||||
* @code{c}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue