OSDN Git Service

(split) LDP: Update original to LDP v3.65
[linuxjm/LDP_man-pages.git] / original / 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 2009-03-30 "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
33 .BI "int pthread_equal(pthread_t " t1 ", pthread_t " t2 );
34 .sp
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 CONFORMING TO
48 POSIX.1-2001.
49 .SH NOTES
50 The
51 .BR pthread_equal ()
52 function is necessary because thread IDs should be considered opaque:
53 there is no portable way for applications to directly compare two
54 .I pthread_t
55 values.
56 .SH SEE ALSO
57 .BR pthread_create (3),
58 .BR pthread_self (3),
59 .BR pthreads (7)
60 .SH COLOPHON
61 This page is part of release 3.65 of the Linux
62 .I man-pages
63 project.
64 A description of the project,
65 and information about reporting bugs,
66 can be found at
67 \%http://www.kernel.org/doc/man\-pages/.