自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

關(guān)于kill -0 pid的作用詳解

系統(tǒng) Linux
在服務(wù)器運(yùn)維以及程序開發(fā)過(guò)程中,經(jīng)常會(huì)用到kill命令或者kill()方法。那么,kill是做什么以及信號(hào)0的作用又是什么,一起來(lái)探尋吧。

[[402074]]

在服務(wù)器運(yùn)維以及程序開發(fā)過(guò)程中,經(jīng)常會(huì)用到kill命令或者kill()方法。那么,kill是做什么以及信號(hào)0的作用又是什么,一起來(lái)探尋吧。

kill可以使用的信號(hào)

  1. [root@localhost ~]# 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   
  9. 34) SIGRTMIN    35) SIGRTMIN+1  36) SIGRTMIN+2  37) SIGRTMIN+3 
  10. 38) SIGRTMIN+4  39) SIGRTMIN+5  40) SIGRTMIN+6  41) SIGRTMIN+7  42) SIGRTMIN+8 
  11. 43) SIGRTMIN+9  44) SIGRTMIN+10 45) SIGRTMIN+11 46) SIGRTMIN+12 47) SIGRTMIN+13 
  12. 48) SIGRTMIN+14 49) SIGRTMIN+15 50) SIGRTMAX-14 51) SIGRTMAX-13 52) SIGRTMAX-12 
  13. 53) SIGRTMAX-11 54) SIGRTMAX-10 55) SIGRTMAX-9  56) SIGRTMAX-8  57) SIGRTMAX-7 
  14. 58) SIGRTMAX-6  59) SIGRTMAX-5  60) SIGRTMAX-4  61) SIGRTMAX-3  62) SIGRTMAX-2 
  15. 63) SIGRTMAX-1  64) SIGRTMAX 

 注意:

下面內(nèi)容常作為面試題:前31個(gè)信號(hào)和后31個(gè)信號(hào)的區(qū)別?

在Linux上執(zhí)行kill -l看到可使用信號(hào)共有62個(gè)(仔細(xì)看沒(méi)有32、33哦)。

  • 編號(hào)為1 ~ 31的信號(hào)為傳統(tǒng)UNIX支持的信號(hào),是不可靠信號(hào)(非實(shí)時(shí)的)
  • 編號(hào)為34 ~ 64的信號(hào)是后來(lái)擴(kuò)充的,稱做可靠信號(hào)(實(shí)時(shí)信號(hào))

不可靠信號(hào)、可靠信號(hào)區(qū)別:前者不支持排隊(duì),可能會(huì)造成信號(hào)丟失,而后者不會(huì)。

kill的文檔描述

通過(guò)man命令可以看到關(guān)于kill指令的描述以及參數(shù)解釋,這里截取部分描述,如下:

  1. [root@localhost ~]# man 1 kill 
  2.  
  3. KILL(1)                                                                      User Commands                                                                      KILL(1) 
  4.  
  5. NAME 
  6.        kill - terminate a process 
  7.  
  8. SYNOPSIS 
  9.        kill [-s signal|-p] [-q sigval] [-a] [--] pid... 
  10.        kill -l [signal] 
  11.  
  12. DESCRIPTION 
  13.        The  command  kill  sends  the specified signal to the specified process or process group.  If no signal is specified, the TERM signal is sent.  The TERM signal 
  14.        will kill processes which do not catch this signal.  For other processes, it may be necessary to use the KILL (9) signal, since this signal cannot be caught. 
  15.  
  16.        Most modern shells have a builtin kill functionwith a usage rather similar to that of the command described here.  The '-a' and '-p' options, and  the  possi‐ 
  17.        bility to specify processes by command name are a local extension. 
  18.  
  19.        If sig is 0, then no signal is sent, but error checking is still performed. 
  20.        ...... 
  21.         
  22.  
  23. # [root@localhost ~]# man 2 kill 
  24. KILL(2)                                                                Linux Programmer's Manual                                                                KILL(2) 
  25.  
  26. NAME 
  27.        kill - send signal to a process 
  28.  
  29. SYNOPSIS 
  30.        #include <sys/types.h> 
  31.        #include <signal.h> 
  32.  
  33.        int kill(pid_t pid, int sig); 
  34.  
  35.    Feature Test Macro Requirements for glibc (see feature_test_macros(7)): 
  36.  
  37.        kill(): _POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _POSIX_SOURCE 
  38.  
  39. DESCRIPTION 
  40.        The kill() system call can be used to send any signal to any process group or process. 
  41.  
  42.        If pid is positive, then signal sig is sent to the process with the ID specified by pid. 
  43.  
  44.        If pid equals 0, then sig is sent to every process in the process group of the calling process. 
  45.  
  46.        If pid equals -1, then sig is sent to every process for which the calling process has permission to send signals, except for process 1 (init), but see below. 
  47.  
  48.        If pid is less than -1, then sig is sent to every process in the process group whose ID is -pid. 
  49.  
  50.        If sig is 0, then no signal is sent, but error checking is still performed; this can be used to check for the existence of a process ID or process group ID. 
  51.  
  52.        For  a process to have permission to send a signal it must either be privileged (under Linux: have the CAP_KILL capability), or the real or effective user ID of 
  53.        the sending process must equal the real or saved set-user-ID of the target process.  In the case of SIGCONT it suffices when the sending and receiving processes 
  54.        belong to the same session. 

 從描述可知,無(wú)論是man 1文檔還是man 2文檔都指出:kill命令用于向指定的pid進(jìn)程發(fā)送信號(hào),進(jìn)程在接收到對(duì)應(yīng)的信號(hào)之后會(huì)進(jìn)行對(duì)應(yīng)的操作。

關(guān)于信號(hào)0的作用

man 1 文檔中有一句 If sig is 0, then no signal is sent, but error checking is still performed, 意思是:如果sig為0,則不發(fā)送信號(hào),但仍然進(jìn)行錯(cuò)誤檢查。

man 2 文檔中有一句 If sig is 0, then no signal is sent, but error checking is still performed; this can be used to check for the existence of a process ID or process group ID,意思是:如果sig為0,則不發(fā)送信號(hào),但仍然進(jìn)行錯(cuò)誤檢查; 這可以用來(lái)檢查是否存在進(jìn)程ID或進(jìn)程組ID。

也就是說(shuō),kill -0 pid 執(zhí)行時(shí)不會(huì)發(fā)送信號(hào),但是會(huì)對(duì)pid對(duì)應(yīng)進(jìn)程做錯(cuò)誤檢查。如果返回0則進(jìn)程、服務(wù)正在運(yùn)行中;反之是其他值,則進(jìn)程死了或者服務(wù)已停止。

信號(hào)0的用法

既然,信號(hào)kill -0 pid不發(fā)送信號(hào),主要用于檢查對(duì)應(yīng)進(jìn)程做錯(cuò)誤檢查。那么,在開發(fā)中我們就可以通過(guò)kill返回的錯(cuò)誤信息來(lái)判斷進(jìn)程是否存在、正常運(yùn)行。

shell腳本中示例:

  1. #!/bin/bash 
  2.  
  3. PIDFILE=$1 
  4.  
  5. if [ -f $PIDFILE ]; then 
  6.       PID="$(cat $PIDFILE)" 
  7.      
  8.     if kill -0 "$PID" &> /dev/nullthen 
  9.       echo "process is exists" 
  10.       exit 0 
  11.     else 
  12.       echo "process is not exists" 
  13.       exit 5 
  14.     fi 
  15. fi 

 Go代碼中示例:

  1. func processExists(pid int) bool { 
  2.     if err := syscall.Kill(pid, 0); err == nil { 
  3.         return true 
  4.     } else { 
  5.         return false 
  6.     } 

 【編輯推薦】

 

責(zé)任編輯:姜華 來(lái)源: 今日頭條
相關(guān)推薦

2010-06-04 14:49:15

Linux 查看進(jìn)程

2024-10-22 16:54:14

2020-09-26 07:19:46

Java

2024-08-13 15:46:57

2024-08-26 15:13:36

2024-10-11 17:13:14

SQL數(shù)據(jù)庫(kù)查詢數(shù)據(jù)庫(kù)

2012-05-14 10:18:54

jQuery

2014-11-06 09:49:22

CloudFoundrPaaS

2014-11-06 10:46:48

CloudFoundr

2011-03-18 09:27:00

Spring

2010-09-01 09:10:30

DHCP作用域

2010-09-27 13:21:02

DHCP作用域

2022-04-14 11:17:41

MySQL字符配置

2014-06-05 17:02:41

FTP

2011-09-09 16:23:16

Android Web測(cè)試

2024-10-17 16:17:21

MySQL臨時(shí)表數(shù)據(jù)庫(kù)

2009-10-16 13:19:41

布線施工要求

2024-11-21 07:00:00

線程池Java開發(fā)

2022-08-29 10:52:37

線程函數(shù)操作系統(tǒng)

2021-07-01 11:56:51

JavaScript開發(fā)代碼
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)