Skip to content

Commit f1132d0

Browse files
committed
Fix CI formatting check
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
1 parent fa902e6 commit f1132d0

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

include/stack_macros.h

Lines changed: 16 additions & 16 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? */ \
@@ -80,10 +80,10 @@
8080
} \
8181
} while( 0 )
8282

83-
#else /* if ( configNUMBER_OF_CORES == 1 ) */
83+
#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? */ \
@@ -117,10 +117,10 @@
117117
} \
118118
} while( 0 )
119119

120-
#else /* if ( configNUMBER_OF_CORES == 1 ) */
120+
#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; \
@@ -159,9 +159,9 @@
159159
} \
160160
} while( 0 )
161161

162-
#else /* if ( configNUMBER_OF_CORES == 1 ) */
162+
#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; \
@@ -208,9 +208,9 @@
208208
} \
209209
} while( 0 )
210210

211-
#else /* if ( configNUMBER_OF_CORES == 1 ) */
211+
#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)