signal.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
  2. || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
  3. typedef struct {
  4. unsigned __mc1[2];
  5. unsigned long long __mc2[65];
  6. unsigned __mc3[5];
  7. unsigned long long __mc4[2];
  8. unsigned __mc5[6];
  9. } mcontext_t;
  10. typedef struct __ucontext {
  11. unsigned long uc_flags;
  12. struct __ucontext *uc_link;
  13. stack_t uc_stack;
  14. mcontext_t uc_mcontext;
  15. sigset_t uc_sigmask;
  16. unsigned long uc_regspace[128];
  17. } ucontext_t;
  18. #define SA_NOCLDSTOP 1
  19. #define SA_NOCLDWAIT 0x10000
  20. #define SA_SIGINFO 8
  21. #define SA_ONSTACK 0x08000000
  22. #define SA_RESTART 0x10000000
  23. #define SA_NODEFER 0x40000000
  24. #define SA_RESETHAND 0x80000000
  25. #define SA_RESTORER 0x04000000
  26. #undef SIG_BLOCK
  27. #undef SIG_UNBLOCK
  28. #undef SIG_SETMASK
  29. #define SIG_BLOCK 1
  30. #define SIG_UNBLOCK 2
  31. #define SIG_SETMASK 3
  32. #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
  33. struct sigcontext
  34. {
  35. unsigned sc_regmask, sc_status;
  36. unsigned long long sc_pc, sc_regs[32], sc_fpregs[32];
  37. unsigned sc_ownedfp, sc_fpc_csr, sc_fpc_eir, sc_used_math, sc_dsp;
  38. unsigned long long sc_mdhi, sc_mdlo;
  39. unsigned long sc_hi1, sc_lo1, sc_hi2, sc_lo2, sc_hi3, sc_lo3;
  40. };
  41. #define NSIG 64
  42. #endif
  43. #endif
  44. #define SIGHUP 1
  45. #define SIGINT 2
  46. #define SIGQUIT 3
  47. #define SIGILL 4
  48. #define SIGTRAP 5
  49. #define SIGABRT 6
  50. #define SIGIOT SIGABRT
  51. #define SIGSTKFLT 7
  52. #define SIGFPE 8
  53. #define SIGKILL 9
  54. #define SIGBUS 10
  55. #define SIGSEGV 11
  56. #define SIGSYS 12
  57. #define SIGPIPE 13
  58. #define SIGALRM 14
  59. #define SIGTERM 15
  60. #define SIGUSR1 16
  61. #define SIGUSR2 17
  62. #define SIGCHLD 18
  63. #define SIGPWR 19
  64. #define SIGWINCH 20
  65. #define SIGURG 21
  66. #define SIGIO 22
  67. #define SIGPOLL SIGIO
  68. #define SIGSTOP 23
  69. #define SIGTSTP 24
  70. #define SIGCONT 25
  71. #define SIGTTIN 26
  72. #define SIGTTOU 27
  73. #define SIGVTALRM 28
  74. #define SIGPROF 29
  75. #define SIGXCPU 30
  76. #define SIGXFSZ 31
  77. #define SIGUNUSED SIGSYS