]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/pthread_equal.3
sched_setattr.2: Minor tweaks to Claudio Scordino's patch
[thirdparty/man-pages.git] / man3 / pthread_equal.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_EQUAL 3 2015-08-08 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 pthread_equal \- compare thread IDs
29 .SH SYNOPSIS
30 .nf
31 .B #include <pthread.h>
32 .PP
33 .BI "int pthread_equal(pthread_t " t1 ", pthread_t " t2 );
34 .PP
35 Compile and link with \fI\-pthread\fP.
36 .fi
37 .SH DESCRIPTION
38 The
39 .BR pthread_equal ()
40 function compares two thread identifiers.
41 .SH RETURN VALUE
42 If the two thread IDs are equal,
43 .BR pthread_equal ()
44 returns a nonzero value; otherwise, it returns 0.
45 .SH ERRORS
46 This function always succeeds.
47 .SH ATTRIBUTES
48 For an explanation of the terms used in this section, see
49 .BR attributes (7).
50 .TS
51 allbox;
52 lb lb lb
53 l l l.
54 Interface Attribute Value
55 T{
56 .BR pthread_equal ()
57 T} Thread safety MT-Safe
58 .TE
59 .SH CONFORMING TO
60 POSIX.1-2001, POSIX.1-2008.
61 .SH NOTES
62 The
63 .BR pthread_equal ()
64 function is necessary because thread IDs should be considered opaque:
65 there is no portable way for applications to directly compare two
66 .I pthread_t
67 values.
68 .SH SEE ALSO
69 .BR pthread_create (3),
70 .BR pthread_self (3),
71 .BR pthreads (7)