kern
diff src/interrupts.h @ 11:cccaa40f5432
forgot to add a load of stuff
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 19 Feb 2011 04:41:51 +0200 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/interrupts.h Sat Feb 19 04:41:51 2011 +0200 1.3 @@ -0,0 +1,54 @@ 1.4 +#ifdef ASM 1.5 +/* included from intr-asm.S */ 1.6 +#define INTR_ENTRY_EC(n, name) ientry_err n, name 1.7 +#define INTR_ENTRY_NOEC(n, name) ientry_noerr n, name 1.8 +#else 1.9 +/* included from intr.c inside init_intr() */ 1.10 +#define INTR_ENTRY_EC(n, name) \ 1.11 + void intr_entry_##name(void); \ 1.12 + set_intr_entry(n, intr_entry_##name); 1.13 +#define INTR_ENTRY_NOEC(n, name) INTR_ENTRY_EC(n, name) 1.14 +#endif /* ASM */ 1.15 + 1.16 +/* faults/traps/aborts (plus NMI) */ 1.17 +INTR_ENTRY_NOEC(0, div) 1.18 +INTR_ENTRY_NOEC(1, debug) 1.19 +INTR_ENTRY_NOEC(2, nmi) 1.20 +INTR_ENTRY_NOEC(3, bp) 1.21 +INTR_ENTRY_NOEC(4, overflow) 1.22 +INTR_ENTRY_NOEC(5, bound) 1.23 +INTR_ENTRY_NOEC(6, ill) 1.24 +INTR_ENTRY_NOEC(7, nodev) 1.25 +INTR_ENTRY_EC(8, dfault) 1.26 +INTR_ENTRY_NOEC(9, copseg) 1.27 +INTR_ENTRY_EC(10, tss) 1.28 +INTR_ENTRY_EC(11, segpres) 1.29 +INTR_ENTRY_EC(12, stack) 1.30 +INTR_ENTRY_EC(13, prot) 1.31 +INTR_ENTRY_EC(14, page) 1.32 +INTR_ENTRY_NOEC(15, reserved) 1.33 +INTR_ENTRY_NOEC(16, fpu) 1.34 +INTR_ENTRY_EC(17, align) 1.35 +INTR_ENTRY_NOEC(18, mce) 1.36 +INTR_ENTRY_NOEC(19, sse) 1.37 +/* redirected IRQs */ 1.38 +INTR_ENTRY_NOEC(32, irq0) 1.39 +INTR_ENTRY_NOEC(33, irq1) 1.40 +INTR_ENTRY_NOEC(34, irq2) 1.41 +INTR_ENTRY_NOEC(35, irq3) 1.42 +INTR_ENTRY_NOEC(36, irq4) 1.43 +INTR_ENTRY_NOEC(37, irq5) 1.44 +INTR_ENTRY_NOEC(38, irq6) 1.45 +INTR_ENTRY_NOEC(39, irq7) 1.46 +INTR_ENTRY_NOEC(40, irq8) 1.47 +INTR_ENTRY_NOEC(41, irq9) 1.48 +INTR_ENTRY_NOEC(42, irq10) 1.49 +INTR_ENTRY_NOEC(43, irq11) 1.50 +INTR_ENTRY_NOEC(44, irq12) 1.51 +INTR_ENTRY_NOEC(45, irq13) 1.52 +INTR_ENTRY_NOEC(46, irq14) 1.53 +INTR_ENTRY_NOEC(47, irq15) 1.54 +/* system call interrupt */ 1.55 +INTR_ENTRY_NOEC(128, syscall) 1.56 +/* default interrupt */ 1.57 +INTR_ENTRY_NOEC(255, default)