From fa902e6f606fa3162e1db6e19abcfc3ab4b316cd Mon Sep 17 00:00:00 2001 From: Gaurav Aggarwal Date: Wed, 30 Apr 2025 06:11:22 +0000 Subject: [PATCH] Trigger CI checks Signed-off-by: Gaurav Aggarwal --- include/stack_macros.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/include/stack_macros.h b/include/stack_macros.h index 77a3ab3b7..41490a24b 100644 --- a/include/stack_macros.h +++ b/include/stack_macros.h @@ -68,8 +68,8 @@ #if ( configNUMBER_OF_CORES == 1 ) -/* Only the current stack state is to be checked. */ - #define taskCHECK_FOR_STACK_OVERFLOW() \ + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ do \ { \ /* Is the currently saved stack pointer within the stack limit? */ \ @@ -82,8 +82,8 @@ #else /* if ( configNUMBER_OF_CORES == 1 ) */ -/* Only the current stack state is to be checked. */ - #define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \ + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \ do \ { \ const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \ @@ -105,8 +105,8 @@ #if ( configNUMBER_OF_CORES == 1 ) -/* Only the current stack state is to be checked. */ - #define taskCHECK_FOR_STACK_OVERFLOW() \ + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ do \ { \ /* Is the currently saved stack pointer within the stack limit? */ \ @@ -119,8 +119,8 @@ #else /* if ( configNUMBER_OF_CORES == 1 ) */ -/* Only the current stack state is to be checked. */ - #define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \ + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \ do \ { \ const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \ @@ -142,7 +142,7 @@ #if ( configNUMBER_OF_CORES == 1 ) - #define taskCHECK_FOR_STACK_OVERFLOW() \ + #define taskCHECK_FOR_STACK_OVERFLOW() \ do \ { \ const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \ @@ -161,7 +161,7 @@ #else /* if ( configNUMBER_OF_CORES == 1 ) */ - #define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \ + #define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \ do \ { \ const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \ @@ -188,7 +188,7 @@ #if ( configNUMBER_OF_CORES == 1 ) - #define taskCHECK_FOR_STACK_OVERFLOW() \ + #define taskCHECK_FOR_STACK_OVERFLOW() \ do \ { \ int8_t * pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \ @@ -210,7 +210,7 @@ #else /* if ( configNUMBER_OF_CORES == 1 ) */ - #define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \ + #define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \ do \ { \ const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \