1 /* $NetBSD: intr.h,v 1.1 2004/03/11 21:44:08 cl Exp $ */ 2 3 4 #ifndef _XEN_INTR_H_ 5 #define _XEN_INTR_H_ 6 7 #include <x86/intr.h> 8 9 #ifndef _LOCORE 10 11 #define IPL_DEBUG 0x1 /* domain debug interrupt */ 12 #define IPL_DIE 0xf /* domain die interrupt */ 13 14 extern struct intrstub xenev_stubs[]; 15 16 #endif /* _LOCORE */ 17 18 #endif /* _XEN_INTR_H_ */ 19