From 05da1080315240dd7809acc9d2e3630876a684a5 Mon Sep 17 00:00:00 2001 From: bje Date: Fri, 10 Jul 1998 14:24:41 +0000 Subject: 1998-07-11 Ben Elliston * pthread.h (pthread_join): Add function prototype. (pthread_equal): Likewise. --- pthread.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pthread.h b/pthread.h index 98f25ba..3a8be06 100644 --- a/pthread.h +++ b/pthread.h @@ -37,6 +37,10 @@ void pthread_exit(void *value); pthread_t pthread_self(void); +int pthread_equal(pthread_t t1, pthread_t t2); + +int pthread_join(pthread_t thread, void ** valueptr); + #ifdef __cplusplus } #endif /* __cplusplus */ -- cgit v1.2.3