home *** CD-ROM | disk | FTP | other *** search
/ Internet MPEG Audio Archive / IMAA.mdf / util / dos / l3v100n / rsx / source / signals.h < prev    next >
C/C++ Source or Header  |  1994-01-19  |  608b  |  35 lines

  1. /* Copyright    Rainer Schnitker 92,93 */
  2.  
  3. #ifndef _SIGNALS_H
  4. #define _SIGNALS_H
  5.  
  6. /* signal no */
  7. #define SIGHUP    1
  8. #define SIGINT    2
  9. #define SIGQUIT   3
  10. #define SIGILL    4
  11. #define SIGTRAP   5
  12. #define SIGABRT   6
  13. #define SIGEMT    7
  14. #define SIGFPE    8
  15. #define SIGKILL   9
  16. #define SIGBUS   10
  17. #define SIGSEGV  11
  18. #define SIGSYS   12
  19. #define SIGPIPE  13
  20. #define SIGALRM  14
  21. #define SIGTERM  15
  22. #define SIGCLD   18
  23. #define SIGBREAK 21
  24. #define MAX_SIGNALS 22
  25.  
  26. #define SIG_DFL  0
  27. #define SIG_IGN  1
  28. #define SIG_ACK  4
  29. #define SIG_ERR  -1
  30.  
  31.  
  32. void    myexcep13 ( void );
  33.  
  34. #endif
  35.