Changes.old: Add missing piece to 5.00 changelog
[man-pages.git] / man2 / tkill.2
blobd2b19abbc7ee981e57a0c47d6fcc63c264a60459
1 .\" Copyright (C) 2008 Michael Kerrisk <tmk.manpages@gmail.com>
2 .\" and Copyright 2003 Abhijit Menon-Sen <ams@wiw.org>
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .\" 2004-05-31, added tgkill, ahu, aeb
27 .\" 2008-01-15 mtk -- rewrote DESCRIPTION
28 .\"
29 .TH TKILL 2 2017-09-15 "Linux" "Linux Programmer's Manual"
30 .SH NAME
31 tkill, tgkill \- send a signal to a thread
32 .SH SYNOPSIS
33 .nf
34 .BI "int tkill(int " tid ", int " sig );
35 .PP
36 .BI "int tgkill(int " tgid ", int " tid ", int " sig );
37 .fi
38 .PP
39 .IR Note :
40 There are no glibc wrappers for these system calls; see NOTES.
41 .SH DESCRIPTION
42 .BR tgkill ()
43 sends the signal
44 .I sig
45 to the thread with the thread ID
46 .I tid
47 in the thread group
48 .IR tgid .
49 (By contrast,
50 .BR kill (2)
51 can be used to send a signal only to a process (i.e., thread group)
52 as a whole, and the signal will be delivered to an arbitrary
53 thread within that process.)
54 .PP
55 .BR tkill ()
56 is an obsolete predecessor to
57 .BR tgkill ().
58 It allows only the target thread ID to be specified,
59 which may result in the wrong thread being signaled if a thread
60 terminates and its thread ID is recycled.
61 Avoid using this system call.
62 .\" FIXME Maybe say something about the following:
63 .\" http://sourceware.org/bugzilla/show_bug.cgi?id=12889
64 .\"
65 .\" Quoting Rich Felker <bugdal@aerifal.cx>:
66 .\"
67 .\" There is a race condition in pthread_kill: it is possible that,
68 .\" between the time pthread_kill reads the pid/tid from the target
69 .\" thread descriptor and the time it makes the tgkill syscall,
70 .\" the target thread terminates and the same tid gets assigned
71 .\" to a new thread in the same process.
72 .\"
73 .\" (The tgkill syscall was designed to eliminate a similar race
74 .\" condition in tkill, but it only succeeded in eliminating races
75 .\" where the tid gets reused in a different process, and does not
76 .\" help if the same tid gets assigned to a new thread in the
77 .\" same process.)
78 .\"
79 .\" The only solution I can see is to introduce a mutex that ensures
80 .\" that a thread cannot exit while pthread_kill is being called on it.
81 .\"
82 .\" Note that in most real-world situations, like almost all race
83 .\" conditions, this one will be extremely rare. To make it
84 .\" measurable, one could exhaust all but 1-2 available pid values,
85 .\" possibly by lowering the max pid parameter in /proc, forcing
86 .\" the same tid to be reused rapidly.
87 .PP
88 These are the raw system call interfaces, meant for internal
89 thread library use.
90 .SH RETURN VALUE
91 On success, zero is returned.
92 On error, \-1 is returned, and \fIerrno\fP
93 is set appropriately.
94 .SH ERRORS
95 .TP
96 .B EINVAL
97 An invalid thread ID, thread group ID, or signal was specified.
98 .TP
99 .B EPERM
100 Permission denied.
101 For the required permissions, see
102 .BR kill (2).
104 .B ESRCH
105 No process with the specified thread ID (and thread group ID) exists.
107 .B EAGAIN
109 .B RLIMIT_SIGPENDING
110 resource limit was reached and
111 .I sig
112 is a real-time signal.
114 .B EAGAIN
115 Insufficient kernel memory was available and
116 .I sig
117 is a real-time signal.
118 .SH VERSIONS
119 .BR tkill ()
120 is supported since Linux 2.4.19 / 2.5.4.
121 .BR tgkill ()
122 was added in Linux 2.5.75.
123 .SH CONFORMING TO
124 .BR tkill ()
126 .BR tgkill ()
127 are Linux-specific and should not be used
128 in programs that are intended to be portable.
129 .SH NOTES
130 See the description of
131 .B CLONE_THREAD
133 .BR clone (2)
134 for an explanation of thread groups.
136 Glibc does not provide wrappers for these system calls; call them using
137 .BR syscall (2).
138 .SH SEE ALSO
139 .BR clone (2),
140 .BR gettid (2),
141 .BR kill (2),
142 .BR rt_sigqueueinfo (2)