summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/confdefs.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-06 16:58:02 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-08 08:09:20 +0100
commitff081aee72436131cf11e3a35f96a6405c3a4d78 (patch)
treee64045cd5e8933e07eb1c6ae2c60bf426edc161a /cpukit/include/rtems/confdefs.h
parentpsxtmtests_plan.csv: Add psxtmonce01 (diff)
downloadrtems-ff081aee72436131cf11e3a35f96a6405c3a4d78.tar.bz2
score: Rename interrupt stack symbols
Rename * _Configuration_Interrupt_stack_area_begin in _ISR_Stack_area_begin, * _Configuration_Interrupt_stack_area_end in _ISR_Stack_area_end, and * _Configuration_Interrupt_stack_size in _ISR_Stack_size. Move definitions to <rtems/score/isr.h>. The new names are considerable shorter and in the right namespace. Update #3459.
Diffstat (limited to 'cpukit/include/rtems/confdefs.h')
-rw-r--r--cpukit/include/rtems/confdefs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/include/rtems/confdefs.h b/cpukit/include/rtems/confdefs.h
index 15d0947ea3..b7ba7e9d11 100644
--- a/cpukit/include/rtems/confdefs.h
+++ b/cpukit/include/rtems/confdefs.h
@@ -1176,16 +1176,16 @@ extern rtems_initialization_tasks_table Initialization_tasks[];
#ifdef CONFIGURE_INIT
RTEMS_DEFINE_GLOBAL_SYMBOL(
- _Configuration_Interrupt_stack_size,
+ _ISR_Stack_size,
CONFIGURE_INTERRUPT_STACK_SIZE
);
- char _Configuration_Interrupt_stack_area_begin[
+ char _ISR_Stack_area_begin[
_CONFIGURE_MAXIMUM_PROCESSORS * CONFIGURE_INTERRUPT_STACK_SIZE
] RTEMS_ALIGNED( CPU_INTERRUPT_STACK_ALIGNMENT )
RTEMS_SECTION( ".rtemsstack.interrupt.begin" );
- const char _Configuration_Interrupt_stack_area_end[ 0 ]
+ const char _ISR_Stack_area_end[ 0 ]
RTEMS_SECTION( ".rtemsstack.interrupt.end" ) = { };
#endif