Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv1485/arch/vax/kernel
Modified Files:
interrupt.c
Log Message:
DA: add a handler for XFC...
Index: interrupt.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel/interrupt.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- interrupt.c 2001/09/11 19:23:38 1.18
+++ interrupt.c 2001/09/14 23:55:03 1.19
@@ -166,6 +166,12 @@
machine_halt();
}
+ if (register_excep_handler(SCB_XFC, "reserved instruction (reserved_instr_handler)", reserved_instr_handler, 0, 0)) {
+ printk("Panic: unable to register reserved operand handler\n");
+ machine_halt();
+ }
+
+
if (register_excep_handler(SCB_CHMK,"CHMK trap (syscall_handler)", syscall_handler, 1, 0)) {
printk("Panic: unable to register syscall handler\n");
machine_halt();
|