/* $Id: signal.h,v 1.1.1.1 2003/07/02 13:57:00 eleph Exp $ */ #ifndef _LINUX_SIGNAL_H #define _LINUX_SIGNAL_H #include #include #include #ifdef __KERNEL__ /* * These values of sa_flags are used only by the kernel as part of the * irq handling routines. * * SA_INTERRUPT is also used by the irq handling routines. * SA_SHIRQ is for shared interrupt support on PCI and EISA. */ #define SA_PROBE SA_ONESHOT #define SA_SAMPLE_RANDOM SA_RESTART #define SA_SHIRQ 0x04000000 #endif #endif