summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbje <bje>1998-07-10 14:24:41 +0000
committerbje <bje>1998-07-10 14:24:41 +0000
commit05da1080315240dd7809acc9d2e3630876a684a5 (patch)
treefa277a190612860391d91346f47ce46afd06e95c
parent5a906db56a70e34cbd6d3f732287dd1ad878dec1 (diff)
1998-07-11 Ben Elliston <bje@cygnus.com>
* pthread.h (pthread_join): Add function prototype. (pthread_equal): Likewise.
-rw-r--r--pthread.h4
1 files changed, 4 insertions, 0 deletions
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 */