summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-04-05 10:31:24 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-04-05 10:31:57 +0200
commit3d8c28d0eedf245c115d8d23ef15d5c71c928f65 (patch)
treee411264a457380b0e2d54921153352a2220827ee
parent38e4125b133b097abc3922beaea9bab56d4f0c0e (diff)
config: Fix _ISR_Stack_area_endnext
-rw-r--r--cpukit/include/rtems/confdefs/percpu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/include/rtems/confdefs/percpu.h b/cpukit/include/rtems/confdefs/percpu.h
index 730571b54a..8ae848659c 100644
--- a/cpukit/include/rtems/confdefs/percpu.h
+++ b/cpukit/include/rtems/confdefs/percpu.h
@@ -96,11 +96,11 @@ RTEMS_DEFINE_GLOBAL_SYMBOL(
char _ISR_Stack_area_begin[
_CONFIGURE_MAXIMUM_PROCESSORS * CONFIGURE_INTERRUPT_STACK_SIZE
] RTEMS_ALIGNED( CPU_INTERRUPT_STACK_ALIGNMENT )
-RTEMS_SECTION( ".rtemsstack.interrupt.begin" );
+RTEMS_SECTION( ".rtemsstack.interrupt" );
-RTEMS_DEFINE_GLOBAL_SYMBOL_IN_SECTION(
+RTEMS_DEFINE_GLOBAL_SYMBOL(
_ISR_Stack_area_end,
- ".rtemsstack.interrupt.end"
+ RTEMS_SYMBOL_NAME( _ISR_Stack_area_begin ) + CONFIGURE_INTERRUPT_STACK_SIZE
);
/* Thread stack size configuration */