Subj : Re: returning arguments To : comp.programming.threads From : loic-dev Date : Tue Jun 28 2005 12:34 am Salut, > Thank you. Question though: I assume pthread_join has to come after > pthread_create? Yes, pthread_join() has to be executed after (in a timely fashion) pthread_create() since you need the thread id. Cheers, Loic. .