Changeset b9e97fb in mainline for arch/ia32/include/interrupt.h
- Timestamp:
- 2005-08-31T10:53:34Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8f91729
- Parents:
- 9756131
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/include/interrupt.h
r9756131 rb9e97fb 63 63 #define VECTOR_WAKEUP_IPI (IVT_FREEBASE+2) 64 64 65 typedef void (* iroutine)(__u8 n, __u32 stack[]); 66 67 extern iroutine ivt[IVT_ITEMS]; 65 typedef void (* iroutine)(__u8 n, __native stack[]); 68 66 69 67 extern void (* disable_irqs_function)(__u16 irqmask); … … 73 71 extern iroutine trap_register(__u8 n, iroutine f); 74 72 75 extern void trap_dispatcher(__u8 n, __ u32stack[]);73 extern void trap_dispatcher(__u8 n, __native stack[]); 76 74 77 extern void null_interrupt(__u8 n, __ u32stack[]);78 extern void gp_fault(__u8 n, __ u32stack[]);79 extern void nm_fault(__u8 n, __ u32stack[]);80 extern void ss_fault(__u8 n, __ u32stack[]);81 extern void page_fault(__u8 n, __ u32stack[]);82 extern void syscall(__u8 n, __ u32stack[]);83 extern void tlb_shootdown_ipi(__u8 n, __ u32stack[]);84 extern void wakeup_ipi(__u8 n, __ u32stack[]);75 extern void null_interrupt(__u8 n, __native stack[]); 76 extern void gp_fault(__u8 n, __native stack[]); 77 extern void nm_fault(__u8 n, __native stack[]); 78 extern void ss_fault(__u8 n, __native stack[]); 79 extern void page_fault(__u8 n, __native stack[]); 80 extern void syscall(__u8 n, __native stack[]); 81 extern void tlb_shootdown_ipi(__u8 n, __native stack[]); 82 extern void wakeup_ipi(__u8 n, __native stack[]); 85 83 86 84 extern void trap_virtual_enable_irqs(__u16 irqmask);
Note:
See TracChangeset
for help on using the changeset viewer.