From ff081aee72436131cf11e3a35f96a6405c3a4d78 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 6 Nov 2018 16:58:02 +0100 Subject: 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 . The new names are considerable shorter and in the right namespace. Update #3459. --- cpukit/include/rtems/score/isr.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'cpukit/include/rtems/score/isr.h') diff --git a/cpukit/include/rtems/score/isr.h b/cpukit/include/rtems/score/isr.h index d9c03b807f..58dbb843c6 100644 --- a/cpukit/include/rtems/score/isr.h +++ b/cpukit/include/rtems/score/isr.h @@ -76,6 +76,32 @@ typedef ISR_Handler ( *ISR_Handler_entry )( extern ISR_Handler_entry _ISR_Vector_table[ CPU_INTERRUPT_NUMBER_OF_VECTORS ]; #endif +/** + * @brief Global symbol with a value equal to the configure interrupt stack size. + * + * This global symbol is defined by the application configuration option + * CONFIGURE_INIT_TASK_STACK_SIZE via . + */ +RTEMS_DECLARE_GLOBAL_SYMBOL( _ISR_Stack_size ); + +/** + * @brief The interrupt stack area begin. + * + * The interrupt stack area is defined by the application configuration via + * . The size of the area depends on + * CONFIGURE_INIT_TASK_STACK_SIZE and CONFIGURE_MAXIMUM_PROCESSORS. + */ +extern char _ISR_Stack_area_begin[]; + +/** + * @brief The interrupt stack area end. + * + * The interrupt stack area is defined by the application configuration via + * . The size of the area depends on + * CONFIGURE_INIT_TASK_STACK_SIZE and CONFIGURE_MAXIMUM_PROCESSORS. + */ +extern const char _ISR_Stack_area_end[]; + /** * @brief Initialize the ISR handler. * -- cgit v1.2.3