ref: 971139413906f12cc401f845dca841ab80d51d9d
dir: /libnpe_pthread/pthread_join.c/
#include "_pthread.h"
int
pthread_join(pthread_t pt, void **res)
{
npe_pthread_t *t;
t = (npe_pthread_t*)pt;
if(t->waitchan != nil)
recv(t->waitchan, res);
return 0;
}