xref: /aosp_15_r20/external/musl/src/thread/thrd_join.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <stdint.h>
2 #include <threads.h>
3 #include <pthread.h>
4 
thrd_join(thrd_t t,int * res)5 int thrd_join(thrd_t t, int *res)
6 {
7         void *pthread_res;
8         __pthread_join(t, &pthread_res);
9         if (res) *res = (int)(intptr_t)pthread_res;
10         return thrd_success;
11 }
12