#include <pthread.h>
int pthread_equal (pthread_t t1, pthread_t t2);
int pthread_equal
The pthread_equal function compares the two threads t1 and t2.
The pthread_equal function returns one if the two threads are the same thread, and zero otherwise.
None