#include <pthread.h> int pthread_join( pthread_t thread, void **value_ptr );
If any threads have previously joined with the specified thread, then they will remain joined with that thread. Any subsequent calls to pthread_join on the specified thread will fail.
If value_ptr is NULL, then no value is returned.
Copyright © 1988-1998 OAR Corporation