]> git.ipfire.org Git - thirdparty/util-linux.git/blame - misc-utils/kill.1.adoc
Merge branch 'getwc' of https://github.com/t-8ch/util-linux
[thirdparty/util-linux.git] / misc-utils / kill.1.adoc
CommitLineData
295b3979 1//po4a: entry man manual
6c64d12d
MB
2////
3Copyright 1994 Salvatore Valente (svalente@mit.edu)
4Copyright 1992 Rickard E. Faith (faith@cs.unc.edu)
5May be distributed under the GNU General Public License
6////
7= kill(1)
8:doctype: manpage
9:man manual: User Commands
10:man source: util-linux {release-version}
11:page-layout: base
12:command: kill
13
14== NAME
15
16kill - terminate a process
17
18== SYNOPSIS
19
cd1e7e27 20*kill* [**-**_signal_|*-s* _signal_|*-p*] [*-q* _value_] [*-a*] [*--timeout* _milliseconds_ _signal_] [*--*] _pid_|_name_...
6c64d12d
MB
21
22*kill* *-l* [_number_] | *-L*
23
24
25== DESCRIPTION
26
27The command *kill* sends the specified _signal_ to the specified processes or process groups.
28
e6743239 29If no signal is specified, the *TERM* signal is sent. The default action for this signal is to terminate the process. This signal should be used in preference to the *KILL* signal (number 9), since a process may install a handler for the TERM signal in order to perform clean-up steps before terminating in an orderly fashion. If a process does not terminate after a *TERM* signal has been sent, then the *KILL* signal may be used; be aware that the latter signal cannot be caught, and so does not give the target process the opportunity to perform any clean-up before terminating.
6c64d12d
MB
30
31Most modern shells have a builtin *kill* command, with a usage rather similar to that of the command described here. The *--all*, *--pid*, and *--queue* options, and the possibility to specify processes by command name, are local extensions.
32
33If _signal_ is 0, then no actual signal is sent, but error checking is still performed.
34
35== ARGUMENTS
36
37The list of processes to be signaled can be a mixture of names and PIDs.
38
39_pid_::
2c646c80
MB
40Each _pid_ can be expressed in one of the following ways:
41_n_;;
42where _n_ is larger than 0. The process with PID _n_ is signaled.
43*0*;;
44All processes in the current process group are signaled.
45*-1*;;
46All processes with a PID larger than 1 are signaled.
47**-**__n__;;
48where _n_ is larger than 1. All processes in process group _n_ are signaled. When an argument of the form '-n' is given, and it is meant to denote a process group, either a signal must be specified first, or the argument must be preceded by a '--' option, otherwise it will be taken as the signal to send.
6c64d12d
MB
49
50_name_::
2c646c80 51All processes invoked using this _name_ will be signaled.
6c64d12d
MB
52
53== OPTIONS
54
55*-s*, *--signal* _signal_::
2c646c80 56The signal to send. It may be given as a name or a number.
6c64d12d 57*-l*, *--list* [_number_]::
2c646c80 58Print a list of signal names, or convert the given signal number to a name. The signals can be found in _/usr/include/linux/signal.h_.
6c64d12d 59*-L*, *--table*::
2c646c80 60Similar to *-l*, but it will print signal names and their corresponding numbers.
6c64d12d 61*-a*, *--all*::
2c646c80 62Do not restrict the command-name-to-PID conversion to processes with the same UID as the present process.
6c64d12d 63*-p*, *--pid*::
2c646c80 64Only print the process ID (PID) of the named processes, do not send any signals.
30463e36
CD
65*-r*, *--require-handler*::
66Do not send the signal if it is not caught in userspace by the signalled process.
6c64d12d 67*--verbose*::
2c646c80 68Print PID(s) that will be signaled with *kill* along with the signal.
6c64d12d 69*-q*, *--queue* _value_::
2c646c80 70Send the signal using *sigqueue*(3) rather than *kill*(2). The _value_ argument is an integer that is sent along with the signal. If the receiving process has installed a handler for this signal using the *SA_SIGINFO* flag to *sigaction*(2), then it can obtain this data via the _si_sigval_ field of the _siginfo_t_ structure.
6c64d12d 71*--timeout* _milliseconds signal_::
2c646c80
MB
72Send a signal defined in the usual way to a process, followed by an additional signal after a specified delay. The *--timeout* option causes *kill* to wait for a period defined in _milliseconds_ before sending a follow-up _signal_ to the process. This feature is implemented using the Linux kernel PID file descriptor feature in order to guarantee that the follow-up signal is sent to the same process or not sent if the process no longer exists.
73+
74Note that the operating system may re-use PIDs and implementing an equivalent feature in a shell using *kill* and *sleep* would be subject to races whereby the follow-up signal might be sent to a different process that used a recycled PID.
75+
76The *--timeout* option can be specified multiple times: the signals are sent sequentially with the specified timeouts. The *--timeout* option can be combined with the *--queue* option.
77+
e6743239 78As an example, the following command sends the signals *QUIT*, *TERM* and *KILL* in sequence and waits for 1000 milliseconds between sending the signals:
2c646c80 79+
6c64d12d
MB
80....
81kill --verbose --timeout 1000 TERM --timeout 1000 KILL \
82 --signal QUIT 12345
83....
84
85== EXIT STATUS
86
87*kill* has the following exit status values:
88
6c64d12d 89*0*::
2c646c80 90success
6c64d12d 91*1*::
2c646c80 92failure
6c64d12d 93*64*::
2c646c80 94partial success (when more than one process specified)
6c64d12d
MB
95
96== NOTES
97
98Although it is possible to specify the TID (thread ID, see *gettid*(2)) of one of the threads in a multithreaded process as the argument of *kill*, the signal is nevertheless directed to the process (i.e., the entire thread group). In other words, it is not possible to send a signal to an explicitly selected thread in a multithreaded process. The signal will be delivered to an arbitrarily selected thread in the target process that is not blocking the signal. For more details, see *signal*(7) and the description of *CLONE_THREAD* in *clone*(2).
99
100Various shells provide a builtin *kill* command that is preferred in relation to the *kill*(1) executable described by this manual. The easiest way to ensure one is executing the command described in this page is to use the full path when calling the command, for example: */bin/kill --version*
101
102== AUTHORS
103
2c646c80
MB
104mailto:svalente@mit.edu[Salvatore Valente],
105mailto:kzak@redhat.com[Karel Zak]
6c64d12d
MB
106
107The original version was taken from BSD 4.4.
108
109== SEE ALSO
110
111*bash*(1),
112*tcsh*(1),
113*sigaction*(2),
114*kill*(2),
115*sigqueue*(3),
116*signal*(7)
117
625e9c61 118include::man-common/bugreports.adoc[]
6c64d12d 119
625e9c61 120include::man-common/footer.adoc[]
6c64d12d
MB
121
122ifdef::translation[]
625e9c61 123include::man-common/translation.adoc[]
6c64d12d 124endif::[]