diff options
author | bje <bje> | 1998-07-10 14:24:41 +0000 |
---|---|---|
committer | bje <bje> | 1998-07-10 14:24:41 +0000 |
commit | 05da1080315240dd7809acc9d2e3630876a684a5 (patch) | |
tree | fa277a190612860391d91346f47ce46afd06e95c | |
parent | 5a906db56a70e34cbd6d3f732287dd1ad878dec1 (diff) |
1998-07-11 Ben Elliston <bje@cygnus.com>
* pthread.h (pthread_join): Add function prototype.
(pthread_equal): Likewise.
-rw-r--r-- | pthread.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 */ |