summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/powerpc/rtems/new-exceptions/cpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/powerpc/rtems/new-exceptions/cpu.h')
-rw-r--r--cpukit/score/cpu/powerpc/rtems/new-exceptions/cpu.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/score/cpu/powerpc/rtems/new-exceptions/cpu.h b/cpukit/score/cpu/powerpc/rtems/new-exceptions/cpu.h
index 6b30c0ed0b..c0a7f8809b 100644
--- a/cpukit/score/cpu/powerpc/rtems/new-exceptions/cpu.h
+++ b/cpukit/score/cpu/powerpc/rtems/new-exceptions/cpu.h
@@ -676,7 +676,9 @@ static inline void _CPU_ISR_Set_level( unsigned32 level )
_CPU_MSR_SET(msr);
}
-#define _CPU_ISR_install_vector(irq, new, old) {BSP_panic("_CPU_ISR_install_vector called\n");}
+void BSP_panic(char *);
+#define _CPU_ISR_install_vector(irq, new, old) \
+ {BSP_panic("_CPU_ISR_install_vector called\n");}
/* Context handler macros */
@@ -764,6 +766,8 @@ void _CPU_Context_Initialize(
* halts/stops the CPU.
*/
+void _BSP_Fatal_error(unsigned int);
+
#define _CPU_Fatal_halt( _error ) \
_BSP_Fatal_error(_error)