home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / ncr9800 / kermisc.h < prev    next >
C/C++ Source or Header  |  2020-01-01  |  2KB  |  43 lines

  1. /**********************************************************************
  2. *                                                                     *
  3. * IVS / MCS-Kermit REL 2                                              *
  4. * source code                                                         *
  5. *                                                                     *
  6. * Change History:                                                     *
  7. *                                                                     *
  8. *                1. Modify C-Kermit(4E) source code to                *
  9. *                   produce new module for MCS/IVS-Kermit             *
  10. *                   ORIGINAL RELEASE                                  *
  11. *                   June 22, 1990                                     *
  12. *                                                                     *
  13. *                                                                     *
  14. ***********************************************************************/
  15.  
  16.  
  17.  
  18. #define SIG_DFL (int (*)())0
  19. #define SIG_IGN (int (*)())1
  20.  
  21. extern int (*ssignal())();
  22.  
  23.  
  24. #define SIGINT  2       /* interrupt (rubout) */
  25. #define SIGQUIT 3       /* quit (ASCII FS) */
  26. #define SIGILL  4       /* illegal instruction (not reset when caught)*/
  27. #define SIGTRAP 5       /* trace trap (not reset when caught) */
  28. #define SIGIOT  6       /* IOT instruction */
  29. #define SIGEMT  7       /* EMT instruction */
  30. #define SIGFPE  8       /* floating point exception */
  31. #define SIGKILL 9       /* kill (cannot be caught or ignored) */
  32. #define SIGBUS  10      /* bus error */
  33. #define SIGSEGV 11      /* segmentation violation */
  34. #define SIGSYS  12      /* bad argument to system call */
  35. #define SIGPIPE 13      /* write on a pipe with no one to read it */
  36. #define SIGALRM 14      /* alarm clock */
  37. #define SIGTERM 15      /* software termination signal from kill */
  38. #define SIGUSR1 16      /* user defined signal 1 */
  39. #define SIGUSR2 17      /* user defined signal 2 */
  40. #define SIGCLD  18      /* death of a child */
  41. #define SIGPWR  19      /* power-fail restart */
  42. #define NSIG    20
  43.