Merge branch 'main' into haydenridd/issue-1087

This commit is contained in:
Gaurav-Aggarwal-AWS 2024-06-11 10:19:11 +05:30 committed by GitHub
commit e94aa346aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View file

@ -621,6 +621,13 @@
#define traceTASK_SWITCHED_IN()
#endif
#ifndef traceSTARTING_SCHEDULER
/* Called after all idle tasks and timer task (if enabled) have been created
* successfully, just before the scheduler is started. */
#define traceSTARTING_SCHEDULER( xIdleTaskHandles )
#endif
#ifndef traceINCREASE_TICK_COUNT
/* Called before stepping the tick count after waking from tickless idle

View file

@ -3732,6 +3732,8 @@ void vTaskStartScheduler( void )
traceTASK_SWITCHED_IN();
traceSTARTING_SCHEDULER( xIdleTaskHandles );
/* Setting up the timer tick is hardware specific and thus in the
* portable interface. */