summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/i386/rtems/score/cpu.h
diff options
context:
space:
mode:
authorTill Straumann <strauman@slac.stanford.edu>2009-10-29 03:59:17 +0000
committerTill Straumann <strauman@slac.stanford.edu>2009-10-29 03:59:17 +0000
commit78667e388a8bf948d2239f230af9ce051de70554 (patch)
tree2e85a13928294a3c57d48887f934b6fec22dea1c /cpukit/score/cpu/i386/rtems/score/cpu.h
parent2009-10-28 Till Straumann <strauman@slac.stanford.edu> (diff)
downloadrtems-78667e388a8bf948d2239f230af9ce051de70554.tar.bz2
2009-10-28 Till Straumann <strauman@slac.stanford.edu>
* rtems/score/cpu.h: Replaced misleading typedef of CPU_Interrupt_frame by 'void'. The i386 port does not pass any frame info to the interrupt handlers.
Diffstat (limited to 'cpukit/score/cpu/i386/rtems/score/cpu.h')
-rw-r--r--cpukit/score/cpu/i386/rtems/score/cpu.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/cpukit/score/cpu/i386/rtems/score/cpu.h b/cpukit/score/cpu/i386/rtems/score/cpu.h
index 7e2b086914..354166b336 100644
--- a/cpukit/score/cpu/i386/rtems/score/cpu.h
+++ b/cpukit/score/cpu/i386/rtems/score/cpu.h
@@ -155,12 +155,11 @@ extern cpuExcHandlerType _currentExcHandler;
extern void rtems_exception_init_mngt(void);
/*
- * The following structure defines the set of information saved
- * on the current stack by RTEMS upon receipt of each interrupt
- * that will lead to re-enter the kernel to signal the thread.
+ * This port does not pass any frame info to the
+ * interrupt handler.
*/
-typedef CPU_Exception_frame CPU_Interrupt_frame;
+typedef void CPU_Interrupt_frame;
typedef enum {
I386_EXCEPTION_DIVIDE_BY_ZERO = 0,