OSDN Git Service

2105e9421099303152682e0d5c5aaecd4eb15c24
[linuxjm/LDP_man-pages.git] / original / man3 / pthread_self.3
1 .\" Copyright (c) 2008 Linux Foundation, written by Michael Kerrisk
2 .\"     <mtk.manpages@gmail.com>
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 .TH PTHREAD_SELF 3 2008-10-24 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 pthread_self \- obtain ID of the calling thread
29 .SH SYNOPSIS
30 .nf
31 .B #include <pthread.h>
32
33 .B pthread_t pthread_self(void);
34 .sp
35 Compile and link with \fI\-pthread\fP.
36 .fi
37 .SH DESCRIPTION
38 The
39 .BR pthread_self ()
40 function returns the ID of the calling thread.
41 This is the same value that is returned in
42 .IR *thread
43 in the
44 .BR pthread_create (3)
45 call that created this thread.
46 .SH RETURN VALUE
47 This function always succeeds, returning the calling thread's ID.
48 .SH ERRORS
49 This function always succeeds.
50 .SH CONFORMING TO
51 POSIX.1-2001.
52 .SH NOTES
53 POSIX.1 allows an implementation wide freedom in choosing
54 the type used to represent a thread ID;
55 for example, representation using either an arithmetic type or
56 a structure is permitted.
57 Therefore, variables of type
58 .I pthread_t
59 can't portably be compared using the C equality operator (\fB==\fP);
60 use
61 .BR pthread_equal (3)
62 instead.
63
64 Thread identifiers should be considered opaque:
65 any attempt to use a thread ID other than in pthreads calls
66 is nonportable and can lead to unspecified results.
67
68 Thread IDs are guaranteed to be unique only within a process.
69 A thread ID may be reused after a terminated thread has been joined,
70 or a detached thread has terminated.
71
72 The thread ID returned by
73 .BR pthread_self ()
74 is not the same thing as the kernel thread ID returned by a call to
75 .BR gettid (2).
76 .SH SEE ALSO
77 .BR pthread_create (3),
78 .BR pthread_equal (3),
79 .BR pthreads (7)
80 .SH COLOPHON
81 This page is part of release 3.64 of the Linux
82 .I man-pages
83 project.
84 A description of the project,
85 and information about reporting bugs,
86 can be found at
87 \%http://www.kernel.org/doc/man\-pages/.