Spell check fix

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
Gaurav Aggarwal 2024-06-10 05:58:18 +00:00
parent bd662a41ad
commit b547e7c577
2 changed files with 3 additions and 3 deletions

View file

@ -624,7 +624,7 @@
#ifndef traceSTARTING_SCHEDULER #ifndef traceSTARTING_SCHEDULER
/* Called after all idle tasks and timer task (if enabled) have been created /* Called after all idle tasks and timer task (if enabled) have been created
* succesfully, just before the scheduler is started. */ * successfully, just before the scheduler is started. */
#define traceSTARTING_SCHEDULER( xIdleTaskHandles ) #define traceSTARTING_SCHEDULER( xIdleTaskHandles )
#endif #endif

View file

@ -3732,11 +3732,11 @@ void vTaskStartScheduler( void )
traceTASK_SWITCHED_IN(); traceTASK_SWITCHED_IN();
traceSTARTING_SCHEDULER( xIdleTaskHandles );
/* Setting up the timer tick is hardware specific and thus in the /* Setting up the timer tick is hardware specific and thus in the
* portable interface. */ * portable interface. */
traceSTARTING_SCHEDULER( xIdleTaskHandles );
/* The return value for xPortStartScheduler is not required /* The return value for xPortStartScheduler is not required
* hence using a void datatype. */ * hence using a void datatype. */
( void ) xPortStartScheduler(); ( void ) xPortStartScheduler();