1 .\" Copyright (c) 2008 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_SELF 3 2021-03-22 "Linux" "Linux Programmer's Manual"
28 pthread_self \- obtain ID of the calling thread
31 .B #include <pthread.h>
33 .B pthread_t pthread_self(void);
35 Compile and link with \fI\-pthread\fP.
40 function returns the ID of the calling thread.
41 This is the same value that is returned in
44 .BR pthread_create (3)
45 call that created this thread.
47 This function always succeeds, returning the calling thread's ID.
49 This function always succeeds.
51 For an explanation of the terms used in this section, see
59 Interface Attribute Value
62 T} Thread safety MT-Safe
68 POSIX.1-2001, POSIX.1-2008.
70 POSIX.1 allows an implementation wide freedom in choosing
71 the type used to represent a thread ID;
72 for example, representation using either an arithmetic type or
73 a structure is permitted.
74 Therefore, variables of type
76 can't portably be compared using the C equality operator (\fB==\fP);
81 Thread identifiers should be considered opaque:
82 any attempt to use a thread ID other than in pthreads calls
83 is nonportable and can lead to unspecified results.
85 Thread IDs are guaranteed to be unique only within a process.
86 A thread ID may be reused after a terminated thread has been joined,
87 or a detached thread has terminated.
89 The thread ID returned by
91 is not the same thing as the kernel thread ID returned by a call to
94 .BR pthread_create (3),
95 .BR pthread_equal (3),