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/cpu/m68k/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/cpu/m68k') diff --git a/cpukit/score/cpu/m68k/cpu.c b/cpukit/score/cpu/m68k/cpu.c index 77a91535c3..87e0fe384d 100644 --- a/cpukit/score/cpu/m68k/cpu.c +++ b/cpukit/score/cpu/m68k/cpu.c @@ -62,7 +62,7 @@ int (*_FPSP_install_raw_handler)( static void m68k_install_interrupt_stack( void ) { #if ( M68K_HAS_SEPARATE_STACKS == 1 ) - uintptr_t isp = (uintptr_t) _Configuration_Interrupt_stack_area_end; + uintptr_t isp = (uintptr_t) _ISR_Stack_area_end; __asm__ volatile ( "movec %0,%%isp" : "=r" (isp) : "0" (isp) ); #endif -- cgit v1.2.3