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.
This commit is contained in:
Sebastian Huber
2018-11-06 16:58:02 +01:00
parent e9f15bee8b
commit ff081aee72
53 changed files with 101 additions and 100 deletions

View File

@@ -126,8 +126,8 @@ crt0:
nop
nop
/* Initialize stack pointer */
mvhi sp, hi(_Configuration_Interrupt_stack_area_end-4)
ori sp, sp, lo(_Configuration_Interrupt_stack_area_end-4)
mvhi sp, hi(_ISR_Stack_area_end-4)
ori sp, sp, lo(_ISR_Stack_area_end-4)
/* Initialize global pointer */
mvhi gp, hi(_edata)
ori gp, gp, lo(_edata)