diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/pthread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/pthread.h b/include/pthread.h index a0af20fe..44a71019 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -80,7 +80,9 @@ int pthread_join(pthread_t, void **); __attribute__((const)) #endif pthread_t pthread_self(void); + int pthread_equal(pthread_t, pthread_t); +#define pthread_equal(x,y) ((x)==(y)) int pthread_setcancelstate(int, int *); int pthread_setcanceltype(int, int *); |