Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorN3xed <dominik.gschwind99@gmail.com>2021-08-10 01:14:10 +0300
committerGitHub <noreply@github.com>2021-08-10 01:14:10 +0300
commitfa6982c99ad2a77693f31b7f40a92469dc35753a (patch)
tree0eb7075a206c588468c3f9dd33e03cd60331344e
parenta2c8db108931eb9abc6f14010ef533c08cb59e9b (diff)
Update xSTATIC_TCB layout in line with tskTCB (#375)
-rw-r--r--include/FreeRTOS.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/FreeRTOS.h b/include/FreeRTOS.h
index 9eefd0d8a..32932d767 100644
--- a/include/FreeRTOS.h
+++ b/include/FreeRTOS.h
@@ -1201,6 +1201,9 @@ typedef struct xSTATIC_TCB
#if ( portUSING_MPU_WRAPPERS == 1 )
xMPU_SETTINGS xDummy2;
#endif
+ #if ( configUSE_CORE_AFFINITY == 1 && configNUM_CORES > 1 )
+ UBaseType_t uxDummy25;
+ #endif
StaticListItem_t xDummy3[ 2 ];
UBaseType_t uxDummy5;
void * pxDummy6;
@@ -1209,9 +1212,6 @@ typedef struct xSTATIC_TCB
#if ( configUSE_TASK_PREEMPTION_DISABLE == 1 )
BaseType_t xDummy24;
#endif
- #if ( configUSE_CORE_AFFINITY == 1 && configNUM_CORES > 1 )
- UBaseType_t uxDummy25;
- #endif
#if ( ( portSTACK_GROWTH > 0 ) || ( configRECORD_STACK_HIGH_ADDRESS == 1 ) )
void * pxDummy8;
#endif