]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/kill.2
Import DTS files for arm, arm64, riscv from Linux 5.8
[FreeBSD/FreeBSD.git] / lib / libc / sys / kill.2
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)kill.2      8.3 (Berkeley) 4/19/94
29 .\" $FreeBSD$
30 .\"
31 .Dd December 1, 2019
32 .Dt KILL 2
33 .Os
34 .Sh NAME
35 .Nm kill
36 .Nd send signal to a process
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In sys/types.h
41 .In signal.h
42 .Ft int
43 .Fn kill "pid_t pid" "int sig"
44 .Sh DESCRIPTION
45 The
46 .Fn kill
47 system call sends the signal given by
48 .Fa sig
49 to
50 .Fa pid ,
51 a
52 process or a group of processes.
53 The
54 .Fa sig
55 argument
56 may be one of the signals specified in
57 .Xr sigaction 2
58 or it may be 0, in which case
59 error checking is performed but no
60 signal is actually sent.
61 This can be used to check the validity of
62 .Fa pid .
63 .Pp
64 For a process to have permission to send a signal to a process designated
65 by
66 .Fa pid ,
67 the user must be the super-user, or
68 the real or saved user ID of the receiving process must match
69 the real or effective user ID of the sending process.
70 A single exception is the signal SIGCONT, which may always be sent
71 to any process with the same session ID as the sender.
72 In addition, if the
73 .Va security.bsd.conservative_signals
74 .Xr sysctl 9
75 is set to 1, the user is not a super-user, and
76 the receiver is set-uid, then
77 only job control and terminal control signals may
78 be sent (in particular, only SIGKILL, SIGINT, SIGTERM, SIGALRM,
79 SIGSTOP, SIGTTIN, SIGTTOU, SIGTSTP, SIGHUP, SIGUSR1, SIGUSR2).
80 .Bl -tag -width Ds
81 .It \&If Fa pid No \&is greater than zero :
82 The
83 .Fa sig
84 signal
85 is sent to the process whose ID is equal to
86 .Fa pid .
87 .It \&If Fa pid No \&is zero :
88 The
89 .Fa sig
90 signal
91 is sent to all processes whose group ID is equal
92 to the process group ID of the sender, and for which the
93 process has permission;
94 this is a variant of
95 .Xr killpg 2 .
96 .It \&If Fa pid No \&is -1 :
97 If the user has super-user privileges,
98 the signal is sent to all processes excluding
99 system processes
100 (with
101 .Dv P_SYSTEM
102 flag set),
103 process with ID 1
104 (usually
105 .Xr init 8 ) ,
106 and the process sending the signal.
107 If the user is not the super user, the signal is sent to all processes
108 which the caller has permissions to, excluding the process sending the signal.
109 No error is returned if any process could be signaled.
110 .El
111 .Pp
112 If the process number is negative but not -1,
113 the signal is sent to all processes whose process group ID
114 is equal to the absolute value of the process number.
115 This is a variant of
116 .Xr killpg 2 .
117 .Sh RETURN VALUES
118 .Rv -std kill
119 .Sh ERRORS
120 The
121 .Fn kill
122 system call
123 will fail and no signal will be sent if:
124 .Bl -tag -width Er
125 .It Bq Er EINVAL
126 The
127 .Fa sig
128 argument
129 is not a valid signal number.
130 .It Bq Er ESRCH
131 No process or process group can be found corresponding to that specified by
132 .Fa pid .
133 .It Bq Er EPERM
134 The sending process does not have permission to send
135 .Va sig
136 to any receiving process.
137 .El
138 .Sh SEE ALSO
139 .Xr getpgrp 2 ,
140 .Xr getpid 2 ,
141 .Xr killpg 2 ,
142 .Xr sigaction 2 ,
143 .Xr sigqueue 2 ,
144 .Xr raise 3 ,
145 .Xr init 8
146 .Sh STANDARDS
147 The
148 .Fn kill
149 system call is expected to conform to
150 .St -p1003.1-90 .
151 .Sh HISTORY
152 A version of the
153 .Fn kill
154 function appeared in
155 .At v3 .
156 The signal number was added to the
157 .Fn kill
158 function in
159 .At v4 .