summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/m68k/cpu.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-04-07 21:18:50 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-04-07 21:18:50 +0000
commit77d20fb28d39f4c52e60bfa148600ca14f8d481b (patch)
tree87e8aabb343526daf7c877d91a049a010efb77b9 /cpukit/score/cpu/m68k/cpu.c
parentinitialized variable to eliminate warning (diff)
downloadrtems-77d20fb28d39f4c52e60bfa148600ca14f8d481b.tar.bz2
Replaced warning message for cpus which do not have hardware support
for an interrupt stack. Hopefully this will encourage someone to implement software stack switching on the m68k.
Diffstat (limited to 'cpukit/score/cpu/m68k/cpu.c')
-rw-r--r--cpukit/score/cpu/m68k/cpu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpukit/score/cpu/m68k/cpu.c b/cpukit/score/cpu/m68k/cpu.c
index d93ded2b34..6d3f1a06a4 100644
--- a/cpukit/score/cpu/m68k/cpu.c
+++ b/cpukit/score/cpu/m68k/cpu.c
@@ -131,8 +131,9 @@ void _CPU_Install_interrupt_stack( void )
asm volatile ( "movec %0,%%isp" : "=r" (isp) : "0" (isp) );
#else
-#warning "FIX ME... NO DEDICATE INTERRUPT STACK!!!"
-#warning "FIX ME... INTERRUPTS RUN ON A TASK STACK!!!"
+#warning "PLEASE IMPLEMENT ME... There is NO dedicated interrupt stack"
+#warning "on CPUs without a dedicated hardware interrupt stack!!!"
+#warning "INTERRUPTS RUN ON A TASK STACK!!!"
#endif
}