signal.h 741 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #pragma once
  2. #define SIGHUP 1
  3. #define SIGINT 2
  4. #define SIGQUIT 3
  5. #define SIGILL 4
  6. #define SIGTRAP 5
  7. #define SIGABRT 6
  8. #define SIGIOT 6
  9. #define SIGBUS 7
  10. #define SIGFPE 8
  11. #define SIGKILL 9
  12. #define SIGUSR1 10
  13. #define SIGSEGV 11
  14. #define SIGUSR2 12
  15. #define SIGPIPE 13
  16. #define SIGALRM 14
  17. #define SIGTERM 15
  18. #define SIGSTKFLT 16
  19. #define SIGCHLD 17
  20. #define SIGCONT 18
  21. #define SIGSTOP 19
  22. #define SIGTSTP 20
  23. #define SIGTTIN 21
  24. #define SIGTTOU 22
  25. #define SIGURG 23
  26. #define SIGXCPU 24
  27. #define SIGXFSZ 25
  28. #define SIGVTALRM 26
  29. #define SIGPROF 27
  30. #define SIGWINCH 28
  31. #define SIGIO 29
  32. #define SIGPOLL SIGIO
  33. #define SIGPWR 30
  34. #define SIGSYS 31
  35. /* These should not be considered constants from userland. */
  36. #define SIGRTMIN 32
  37. #define SIGRTMAX MAX_SIG_NUM