Chinaunix首页 | 论坛 | 博客
  • 博客访问: 145011
  • 博文数量: 43
  • 博客积分: 264
  • 博客等级: 二等列兵
  • 技术积分: 320
  • 用 户 组: 普通用户
  • 注册时间: 2012-05-25 08:46
文章分类

全部博文(43)

文章存档

2015年(4)

2014年(1)

2012年(38)

分类:

2012-06-16 15:51:58

原文地址:kill:进程的暂停和继续 作者:soloforce


  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

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