mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-07-04 11:27:16 -04:00
Trigger CI checks
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
parent
f515c5cc99
commit
fa902e6f60
|
@ -68,8 +68,8 @@
|
||||||
|
|
||||||
#if ( configNUMBER_OF_CORES == 1 )
|
#if ( configNUMBER_OF_CORES == 1 )
|
||||||
|
|
||||||
/* Only the current stack state is to be checked. */
|
/* Only the current stack state is to be checked. */
|
||||||
#define taskCHECK_FOR_STACK_OVERFLOW() \
|
#define taskCHECK_FOR_STACK_OVERFLOW() \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
/* Is the currently saved stack pointer within the stack limit? */ \
|
/* Is the currently saved stack pointer within the stack limit? */ \
|
||||||
|
@ -82,8 +82,8 @@
|
||||||
|
|
||||||
#else /* if ( configNUMBER_OF_CORES == 1 ) */
|
#else /* if ( configNUMBER_OF_CORES == 1 ) */
|
||||||
|
|
||||||
/* Only the current stack state is to be checked. */
|
/* Only the current stack state is to be checked. */
|
||||||
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
|
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
|
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
|
||||||
|
@ -105,8 +105,8 @@
|
||||||
|
|
||||||
#if ( configNUMBER_OF_CORES == 1 )
|
#if ( configNUMBER_OF_CORES == 1 )
|
||||||
|
|
||||||
/* Only the current stack state is to be checked. */
|
/* Only the current stack state is to be checked. */
|
||||||
#define taskCHECK_FOR_STACK_OVERFLOW() \
|
#define taskCHECK_FOR_STACK_OVERFLOW() \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
/* Is the currently saved stack pointer within the stack limit? */ \
|
/* Is the currently saved stack pointer within the stack limit? */ \
|
||||||
|
@ -119,8 +119,8 @@
|
||||||
|
|
||||||
#else /* if ( configNUMBER_OF_CORES == 1 ) */
|
#else /* if ( configNUMBER_OF_CORES == 1 ) */
|
||||||
|
|
||||||
/* Only the current stack state is to be checked. */
|
/* Only the current stack state is to be checked. */
|
||||||
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
|
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
|
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
|
||||||
|
@ -142,7 +142,7 @@
|
||||||
|
|
||||||
#if ( configNUMBER_OF_CORES == 1 )
|
#if ( configNUMBER_OF_CORES == 1 )
|
||||||
|
|
||||||
#define taskCHECK_FOR_STACK_OVERFLOW() \
|
#define taskCHECK_FOR_STACK_OVERFLOW() \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \
|
const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \
|
||||||
|
@ -161,7 +161,7 @@
|
||||||
|
|
||||||
#else /* if ( configNUMBER_OF_CORES == 1 ) */
|
#else /* if ( configNUMBER_OF_CORES == 1 ) */
|
||||||
|
|
||||||
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
|
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
|
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
|
||||||
|
@ -188,7 +188,7 @@
|
||||||
|
|
||||||
#if ( configNUMBER_OF_CORES == 1 )
|
#if ( configNUMBER_OF_CORES == 1 )
|
||||||
|
|
||||||
#define taskCHECK_FOR_STACK_OVERFLOW() \
|
#define taskCHECK_FOR_STACK_OVERFLOW() \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
int8_t * pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \
|
int8_t * pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \
|
||||||
|
@ -210,7 +210,7 @@
|
||||||
|
|
||||||
#else /* if ( configNUMBER_OF_CORES == 1 ) */
|
#else /* if ( configNUMBER_OF_CORES == 1 ) */
|
||||||
|
|
||||||
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
|
#define taskCHECK_FOR_STACK_OVERFLOW( xCoreID ) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
|
const TCB_t * const pxTCB = pxCurrentTCBs[ xCoreID ]; \
|
||||||
|
|
Loading…
Reference in a new issue