home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c050 / 5.ddi / SIGNAL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  1.2 KB  |  49 lines

  1. /*      signal.h
  2.   
  3.         Definitions for ANSI defined signaling capability
  4.  
  5.         Copyright (c) Borland International 1988
  6.         All Rights Reserved.
  7. */
  8.  
  9. #ifndef __SIGNAL_H
  10. #define __SIGNAL_H
  11.  
  12.  
  13. #if __STDC__
  14. #define _Cdecl
  15. #else
  16. #define _Cdecl    cdecl
  17. #endif
  18.  
  19. typedef int    sig_atomic_t;     /* Atomic entity type (ANSI) */
  20.  
  21. #define SIG_DFL ((void (* _Cdecl)(int))0)    /* Default action    */
  22. #define SIG_IGN ((void (* _Cdecl)(int))1)    /* Ignore action    */
  23.  
  24. #ifdef __OS2__
  25. #define SIG_SGE ((void (* _Cdecl)(int))3)    /* Signal gets error    */
  26. #define SIG_ACK ((void (* _Cdecl)(int))4)    /* Signal acknowlege    */
  27. #endif
  28.  
  29. #define SIG_ERR ((void (* _Cdecl)(int))-1)    /* Error return        */
  30.  
  31. #define SIGABRT    22
  32. #define SIGFPE    8        /* Floating point trap    */
  33. #define SIGILL    4        /* Illegal instruction    */
  34. #define SIGINT    2
  35. #define SIGSEGV    11        /* Memory access violation */
  36. #define SIGTERM    15
  37.  
  38. #ifdef __OS2__
  39. #define SIGBREAK    21    /* OS/2 Ctrl-Brk signal    */
  40. #define SIGUSR1        16    /* OS/2 process flag A    */
  41. #define SIGUSR2        17    /* OS/2 process flag B    */
  42. #define SIGUSR3        20    /* OS/2 process flag C    */
  43. #endif
  44.  
  45. int    _Cdecl raise(int sig);
  46. void    (* _Cdecl signal(int sig, void (*func)(/* int */))) (int);
  47.  
  48. #endif
  49.