home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lxapi32.zip / Include / Linux / signal.h < prev    next >
C/C++ Source or Header  |  2002-04-26  |  582b  |  25 lines

  1. /* $Id: signal.h,v 1.2 2002/04/26 23:09:15 smilcke Exp $ */
  2.  
  3. #ifndef _LINUX_SIGNAL_H
  4. #define _LINUX_SIGNAL_H
  5.  
  6. #define signal_pending(p) 0
  7.  
  8. #ifdef __KERNEL__
  9.  
  10. /*
  11.  * These values of sa_flags are used only by the kernel as part of the
  12.  * irq handling routines.
  13.  *
  14.  * SA_INTERRUPT is also used by the irq handling routines.
  15.  * SA_SHIRQ is for shared interrupt support on PCI and EISA.
  16.  */
  17. #define SA_PROBE        SA_ONESHOT
  18. #define SA_SAMPLE_RANDOM    SA_RESTART
  19. #define SA_SHIRQ        0x04000000
  20.  
  21. #define SA_INTERRUPT            0x20000000 // dummy -- ignored
  22. #endif
  23.  
  24. #endif
  25.