summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 */