Guest User

Untitled

a guest
Jan 16th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. $ kill -l
  2. 1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL 5) SIGTRAP
  3. 6) SIGABRT 7) SIGBUS 8) SIGFPE 9) SIGKILL 10) SIGUSR1
  4. 11) SIGSEGV 12) SIGUSR2 13) SIGPIPE 14) SIGALRM 15) SIGTERM
  5. 16) SIGSTKFLT 17) SIGCHLD 18) SIGCONT 19) SIGSTOP 20) SIGTSTP
  6. 21) SIGTTIN 22) SIGTTOU 23) SIGURG 24) SIGXCPU 25) SIGXFSZ
  7. 26) SIGVTALRM 27) SIGPROF 28) SIGWINCH 29) SIGIO 30) SIGPWR
  8. 31) SIGSYS 34) SIGRTMIN 35) SIGRTMIN+1 36) SIGRTMIN+2 37) SIGRTMIN+3
  9. 38) SIGRTMIN+4 39) SIGRTMIN+5 40) SIGRTMIN+6 41) SIGRTMIN+7 42) SIGRTMIN+8
  10. 43) SIGRTMIN+9 44) SIGRTMIN+10 45) SIGRTMIN+11 46) SIGRTMIN+12 47) SIGRTMIN+13
  11. 48) SIGRTMIN+14 49) SIGRTMIN+15 50) SIGRTMAX-14 51) SIGRTMAX-13 52) SIGRTMAX-12
  12. 53) SIGRTMAX-11 54) SIGRTMAX-10 55) SIGRTMAX-9 56) SIGRTMAX-8 57) SIGRTMAX-7
  13. 58) SIGRTMAX-6 59) SIGRTMAX-5 60) SIGRTMAX-4 61) SIGRTMAX-3 62) SIGRTMAX-2
  14. 63) SIGRTMAX-1 64) SIGRTMAX
  15.  
  16. #define NSIG 32
  17. typedef unsigned long sigset_t;
  18.  
  19. #endif /* __ASSEMBLY__ */
  20.  
  21. #define SIGHUP 1
  22. #define SIGINT 2
  23. #define SIGQUIT 3
  24. #define SIGILL 4
  25. #define SIGTRAP 5
  26. #define SIGABRT 6
  27. #define SIGIOT 6
  28. #define SIGBUS 7
  29. #define SIGFPE 8
  30. #define SIGKILL 9
  31. #define SIGUSR1 10
  32. #define SIGSEGV 11
  33. #define SIGUSR2 12
  34. #define SIGPIPE 13
  35. #define SIGALRM 14
  36. #define SIGTERM 15
  37. #define SIGSTKFLT 16
  38. #define SIGCHLD 17
  39. #define SIGCONT 18
  40. #define SIGSTOP 19
  41. #define SIGTSTP 20
  42. #define SIGTTIN 21
  43. #define SIGTTOU 22
  44. #define SIGURG 23
  45. #define SIGXCPU 24
  46. #define SIGXFSZ 25
  47. #define SIGVTALRM 26
  48. #define SIGPROF 27
  49. #define SIGWINCH 28
  50. #define SIGIO 29
  51. #define SIGPOLL SIGIO
  52. /*
  53. #define SIGLOST 29
  54. */
  55. #define SIGPWR 30
  56. #define SIGSYS 31
  57. #define SIGUNUSED 31
  58.  
  59. /* These should not be considered constants from userland. */
  60. #define SIGRTMIN 32
  61. #define SIGRTMAX _NSIG
Add Comment
Please, Sign In to add comment