Chinaunix首页 | 论坛 | 博客
  • 博客访问: 311636
  • 博文数量: 27
  • 博客积分: 758
  • 博客等级: 军士长
  • 技术积分: 369
  • 用 户 组: 普通用户
  • 注册时间: 2010-04-08 23:10
文章分类

全部博文(27)

文章存档

2014年(1)

2012年(26)

我的朋友

分类: 系统运维

2012-05-26 09:27:43


  1. #define SIGHUP 1
  2. #define SIGINT 2
  3. #define SIGQUIT 3
  4. #define SIGILL 4
  5. #define SIGTRAP 5
  6. #define SIGABRT 6
  7. #define SIGIOT 6
  8. #define SIGBUS 7
  9. #define SIGFPE 8
  10. #define SIGKILL 9
  11. #define SIGUSR1 10
  12. #define SIGSEGV 11
  13. #define SIGUSR2 12
  14. #define SIGPIPE 13
  15. #define SIGALRM 14
  16. #define SIGTERM 15
  17. #define SIGSTKFLT 16
  18. #define SIGCHLD 17
  19. #define SIGCONT 18
  20. #define SIGSTOP 19
  21. #define SIGTSTP 20
  22. #define SIGTTIN 21
  23. #define SIGTTOU 22
  24. #define SIGURG 23
  25. #define SIGXCPU 24
  26. #define SIGXFSZ 25
  27. #define SIGVTALRM 26
  28. #define SIGPROF 27
  29. #define SIGWINCH 28
  30. #define SIGIO 29
  31. #define SIGPOLL SIGIO



暂停进程:

  1. $ kill -s SIGSTOP process-pid


继续进程:

  1. kill -s SIGCONT process-pid

阅读(4150) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~