thrd_join.c\thread\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/thread/thrd_join.c
blob: 0d5fd302d1810425a49f52fb3e8c7efe83f9e719 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <stdint.h>
#include <threads.h>
#include <pthread.h>
int thrd_join(thrd_t t, int *res)
{
 void *pthread_res;
 __pthread_join(t, &pthread_res);
 if (res) *res = (int)(intptr_t)pthread_res;
 return thrd_success;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 13:03:05 +0000

AltStyle によって変換されたページ (->オリジナル) /