summaryrefslogtreecommitdiff
path: root/src/thread/pthread_join.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_join.c')
-rw-r--r--src/thread/pthread_join.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/thread/pthread_join.c b/src/thread/pthread_join.c
new file mode 100644
index 00000000..5210ed48
--- /dev/null
+++ b/src/thread/pthread_join.c
@@ -0,0 +1,12 @@
+#include "pthread_impl.h"
+
+int pthread_join(pthread_t t, void **res)
+{
+ int tmp = t->tid;
+ CANCELPT_BEGIN;
+ if (tmp) __wait(&t->tid, 0, tmp, 1);
+ CANCELPT_END;
+ if (res) *res = t->result;
+ if (t->map_base) munmap(t->map_base, t->map_size);
+ return 0;
+}