summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/isr.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/isr.c')
-rw-r--r--cpukit/score/src/isr.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpukit/score/src/isr.c b/cpukit/score/src/isr.c
index 2b498f4870..0c6956fb19 100644
--- a/cpukit/score/src/isr.c
+++ b/cpukit/score/src/isr.c
@@ -64,6 +64,13 @@ void _ISR_Handler_initialization( void )
Configuration.interrupt_stack_size
);
+ /* Interrupt stack might have to be aligned and/or setup
+ * in a specific way.
+ */
+#if defined(_CPU_Interrupt_stack_setup)
+ _CPU_Interrupt_stack_setup(_CPU_Interrupt_stack_low, _CPU_Interrupt_stack_high);
+#endif
+
#endif
#if ( CPU_HAS_HARDWARE_INTERRUPT_STACK == TRUE )