Changeset fcfac420 in mainline for arch/ia32/include/interrupt.h
- Timestamp:
- 2005-12-10T01:02:31Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6095342
- Parents:
- 973be64e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/include/interrupt.h
r973be64e rfcfac420 27 27 */ 28 28 29 #ifndef __ INTERRUPT_H__30 #define __ INTERRUPT_H__29 #ifndef __ia32_INTERRUPT_H__ 30 #define __ia32_INTERRUPT_H__ 31 31 32 32 #include <arch/types.h> … … 62 62 #define VECTOR_WAKEUP_IPI (IVT_FREEBASE+2) 63 63 64 typedef void (* iroutine)(__u8 n, __native stack[]);65 66 64 extern void (* disable_irqs_function)(__u16 irqmask); 67 65 extern void (* enable_irqs_function)(__u16 irqmask); 68 66 extern void (* eoi_function)(void); 69 67 70 extern iroutine trap_register(__u8 n, iroutine f); 71 72 extern void trap_dispatcher(__u8 n, __native stack[]); 73 74 extern void null_interrupt(__u8 n, __native stack[]); 75 extern void gp_fault(__u8 n, __native stack[]); 76 extern void nm_fault(__u8 n, __native stack[]); 77 extern void ss_fault(__u8 n, __native stack[]); 78 extern void page_fault(__u8 n, __native stack[]); 79 extern void syscall(__u8 n, __native stack[]); 80 extern void tlb_shootdown_ipi(__u8 n, __native stack[]); 81 extern void wakeup_ipi(__u8 n, __native stack[]); 68 extern void null_interrupt(int n, void *stack); 69 extern void gp_fault(int n, void *stack); 70 extern void nm_fault(int n, void *stack); 71 extern void ss_fault(int n, void *stack); 72 extern void page_fault(int n, void *stack); 73 extern void syscall(int n, void *stack); 74 extern void tlb_shootdown_ipi(int n, void *stack); 75 extern void wakeup_ipi(int n, void *stack); 82 76 83 77 extern void trap_virtual_enable_irqs(__u16 irqmask);
Note:
See TracChangeset
for help on using the changeset viewer.