FreeRTOS SMP: direct access to current TCB inside stack macros (#1270)

FreeRTOS SMP: direct access to current TCB inside stack macros
This commit is contained in:
Matth9814 2025-04-30 09:42:08 +02:00 committed by GitHub
parent d03233f209
commit 4162ca49d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 101 additions and 6 deletions

View file

@ -5251,7 +5251,7 @@ BaseType_t xTaskIncrementTick( void )
#endif /* configGENERATE_RUN_TIME_STATS */
/* Check for stack overflow, if configured. */
taskCHECK_FOR_STACK_OVERFLOW();
taskCHECK_FOR_STACK_OVERFLOW( xCoreID );
/* Before the currently running task is switched out, save its errno. */
#if ( configUSE_POSIX_ERRNO == 1 )