pthread_equal(3P) pthread_equal(3P)
pthread_equal - compare thread identifiers
#include <pthread.h>
int pthread_equal(pthread_t thread1, pthread_t thread2);
The pthread_equal() function compares the thread identifiers thread1 and
thread2.
If the threads thread1 and thread2 identify the same thread then
pthread_equal() returns TRUE; otherwise it returns FALSE.
pthread_create(3P).
PPPPaaaaggggeeee 1111 [ Back ]
|