1 .\" Copyright (c) 2009 Linux Foundation, written by Michael Kerrisk
2 .\" <mtk.manpages@gmail.com>
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.
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.
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
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
26 .TH PTHREAD_KILL 3 2021-03-22 "Linux" "Linux Programmer's Manual"
28 pthread_kill \- send a signal to a thread
31 .B #include <signal.h>
33 .BI "int pthread_kill(pthread_t " thread ", int " sig );
36 Compile and link with \fI\-pthread\fP.
39 Feature Test Macro Requirements for glibc (see
40 .BR feature_test_macros (7)):
45 _POSIX_C_SOURCE >= 199506L || _XOPEN_SOURCE >= 500
50 function sends the signal
54 a thread in the same process as the caller.
55 The signal is asynchronously directed to
60 is 0, then no signal is sent, but error checking is still performed.
65 on error, it returns an error number, and no signal is sent.
69 An invalid signal was specified.
71 For an explanation of the terms used in this section, see
79 Interface Attribute Value
82 T} Thread safety MT-Safe
88 POSIX.1-2001, POSIX.1-2008.
90 Signal dispositions are process-wide:
91 if a signal handler is installed,
92 the handler will be invoked in the thread
94 but if the disposition of the signal is "stop", "continue", or "terminate",
95 this action will affect the whole process.
97 The glibc implementation of
101 on attempts to send either of the real-time signals
102 used internally by the NPTL threading implementation.
107 POSIX.1-2008 recommends that if an implementation detects the use
108 of a thread ID after the end of its lifetime,
110 should return the error
112 The glibc implementation returns this error in the cases where
113 an invalid thread ID can be detected.
114 But note also that POSIX says that an attempt to use a thread ID whose
115 lifetime has ended produces undefined behavior,
116 and an attempt to use an invalid thread ID in a call to
118 can, for example, cause a segmentation fault.
123 .BR pthread_self (3),
124 .BR pthread_sigmask (3),