Skip to content

Commit fa902e6

Browse files
committed
Trigger CI checks
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
1 parent f515c5c commit fa902e6

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

include/stack_macros.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868

6969
#if ( configNUMBER_OF_CORES == 1 )
7070

71-
/* Only the current stack state is to be checked. */
72-
#define taskCHECK_FOR_STACK_OVERFLOW() \
71+
/* Only the current stack state is to be checked. */
72+
#define taskCHECK_FOR_STACK_OVERFLOW() \
7373
do \
7474
{ \
7575
/* Is the currently saved stack pointer within the stack limit? */ \
@@ -82,8 +82,8 @@
8282

8383
#else /* if ( configNUMBER_OF_CORES == 1 ) */
8484

85-
/* Only the current stack state is to be checked. */
86-
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
85+
/* Only the current stack state is to be checked. */
86+
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
8787
do \
8888
{ \
8989
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
@@ -105,8 +105,8 @@
105105

106106
#if ( configNUMBER_OF_CORES == 1 )
107107

108-
/* Only the current stack state is to be checked. */
109-
#define taskCHECK_FOR_STACK_OVERFLOW() \
108+
/* Only the current stack state is to be checked. */
109+
#define taskCHECK_FOR_STACK_OVERFLOW() \
110110
do \
111111
{ \
112112
/* Is the currently saved stack pointer within the stack limit? */ \
@@ -119,8 +119,8 @@
119119

120120
#else /* if ( configNUMBER_OF_CORES == 1 ) */
121121

122-
/* Only the current stack state is to be checked. */
123-
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
122+
/* Only the current stack state is to be checked. */
123+
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
124124
do \
125125
{ \
126126
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
@@ -142,7 +142,7 @@
142142

143143
#if ( configNUMBER_OF_CORES == 1 )
144144

145-
#define taskCHECK_FOR_STACK_OVERFLOW() \
145+
#define taskCHECK_FOR_STACK_OVERFLOW() \
146146
do \
147147
{ \
148148
const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \
@@ -161,7 +161,7 @@
161161

162162
#else /* if ( configNUMBER_OF_CORES == 1 ) */
163163

164-
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
164+
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
165165
do \
166166
{ \
167167
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
@@ -188,7 +188,7 @@
188188

189189
#if ( configNUMBER_OF_CORES == 1 )
190190

191-
#define taskCHECK_FOR_STACK_OVERFLOW() \
191+
#define taskCHECK_FOR_STACK_OVERFLOW() \
192192
do \
193193
{ \
194194
int8_t * pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \
@@ -210,7 +210,7 @@
210210

211211
#else /* if ( configNUMBER_OF_CORES == 1 ) */
212212

213-
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
213+
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
214214
do \
215215
{ \
216216
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \

0 commit comments

Comments
 (0)