]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - lib/libc/sys/kill.2
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.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 .\" 4. 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 March 15, 2012
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
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 with the same uid as the user excluding the process sending the signal.
109 No error is returned if any process could be signaled.
110 .El
111 .Pp
112 For compatibility with System V,
113 if the process number is negative but not -1,
114 the signal is sent to all processes whose process group ID
115 is equal to the absolute value of the process number.
116 This is a variant of
117 .Xr killpg 2 .
118 .Sh RETURN VALUES
119 .Rv -std kill
120 .Sh ERRORS
121 The
122 .Fn kill
123 system call
124 will fail and no signal will be sent if:
125 .Bl -tag -width Er
126 .It Bq Er EINVAL
127 The
128 .Fa sig
129 argument
130 is not a valid signal number.
131 .It Bq Er ESRCH
132 No process or process group can be found corresponding to that specified by
133 .Fa pid .
134 .It Bq Er EPERM
135 The sending process does not have permission to send
136 .Va sig
137 to the receiving process.
138 .El
139 .Sh SEE ALSO
140 .Xr getpgrp 2 ,
141 .Xr getpid 2 ,
142 .Xr killpg 2 ,
143 .Xr sigaction 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 The
153 .Fn kill
154 function appeared in
155 .At v7 .