]> git.ipfire.org Git - thirdparty/glibc.git/blame - linuxthreads/man/pthread_equal.man
Test for stack alignment.
[thirdparty/glibc.git] / linuxthreads / man / pthread_equal.man
CommitLineData
5afdca00
UD
1.TH PTHREAD_EQUAL 3 LinuxThreads
2
3.SH NAME
4pthread_equal \- compare two thread identifiers
5
6.SH SYNOPSIS
7#include <pthread.h>
8
9int pthread_equal(pthread_t thread1, pthread_t thread2);
10
11.SH DESCRIPTION
12!pthread_equal! determines if two thread identifiers refer to the same
13thread.
14
15.SH "RETURN VALUE"
16A non-zero value is returned if |thread1| and |thread2| refer to the
17same thread. Otherwise, 0 is returned.
18
19.SH AUTHOR
20Xavier Leroy <Xavier.Leroy@inria.fr>
21
22.SH "SEE ALSO"
23!pthread_self!(3).