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/score/src/isr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/src/isr.c') diff --git a/cpukit/score/src/isr.c b/cpukit/score/src/isr.c index 6a1b307f42..4a7bc5fcce 100644 --- a/cpukit/score/src/isr.c +++ b/cpukit/score/src/isr.c @@ -48,7 +48,7 @@ void _ISR_Handler_initialization( void ) stack_size = rtems_configuration_get_interrupt_stack_size(); cpu_max = rtems_configuration_get_maximum_processors(); - stack_low = _Configuration_Interrupt_stack_area_begin; + stack_low = _ISR_Stack_area_begin; for ( cpu_index = 0 ; cpu_index < cpu_max; ++cpu_index ) { Per_CPU_Control *cpu; -- cgit v1.2.3