ref: fadb98dc10ea98482c48c8daeb6b5cf840ef47bd
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; }