home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_07 / LATTIC_3.ZIP / HEADERS / SIGNAL.H < prev    next >
C/C++ Source or Header  |  1990-09-24  |  1KB  |  65 lines

  1. /*
  2.  * signal.h - define macros and functions for signal handling
  3.  *
  4.  * Copyright (c) 1990 HiSoft
  5.  */
  6.  
  7. #ifndef _SIGNAL_H
  8. #define _SIGNAL_H
  9.  
  10. /*
  11.  *
  12.  * This header file contains definitions needed by the signal function.
  13.  *
  14.  */
  15.  
  16. /*
  17.  *
  18.  * NSIG supposedly defines the number of signals recognized.  However,
  19.  * since not all signals are actually implemented under GEMDOS, it actually
  20.  * is the highest legal signal number plus one.
  21.  *
  22.  */
  23.  
  24. #define NSIG     9
  25. #define SIG_MAX  8
  26.             
  27. /**
  28. *
  29. * The following symbols are the defined signals.
  30. *
  31. */
  32.  
  33. #define SIGABRT  1      /*  Abnormal termination, abort()  */
  34. #define SIGFPE   2      /*  Floating point exception  */
  35. #define SIGILL   3      /*  Illegal instruction  */
  36. #define SIGINT   4      /*  Interrupt from GEMDOS */
  37. #define SIGSEGV  5      /*  Segmentation violation  */
  38. #define SIGTERM  6      /*  Termination request  */
  39.  
  40. /*
  41.  *
  42.  * The following symbols are the special forms for the function pointer
  43.  * argument.  They specify certain standard actions that can be performed
  44.  * when the signal occurs.
  45.  *
  46.  */
  47.  
  48. #define SIG_DFL (void (*)(int)) 0    /* default action */
  49. #define SIG_IGN (void (*)(int)) 1    /* ignore the signal */
  50. #define SIG_ERR (void (*)(int)) (-1)    /* error return */
  51.  
  52. /*
  53.  *
  54.  * Function declarations
  55.  *
  56.  */
  57.  
  58. extern void (*signal(int,void (*)(int)))(int);
  59. extern int raise(int);
  60.  
  61. extern void (*__sigfunc[NSIG])(int);
  62.  
  63. typedef long sig_atomic_t;
  64. #endif
  65.