In my main function, I spawn j threads which all compute the same task in parallel -- and then I want to wait for them to finish before exiting.
int main(...) {
// ...
int threads = 6;
pthread_t* thread = malloc(sizeof(pthread_t)*threads);
for(i = 0; i < threads; i++) {
struct thread_param *tp;
tp = malloc(sizeof(*tp));
// ...
int ret = pthread_create(&thread[i], NULL, &control, (void*)tp);
if(ret != 0) {
printf ("Create pthread error!\n");
exit (1);
}
}
for (j = 0; j < threads; j++) {
printf("JOINING THREAD: %i\n", j);
pthread_join( &thread[j], NULL);
}
exit(0);
}
However, nothing waits. Main just exits without ever completing the threaded tasks. Am I missing something?
control(), it is hard to know whether it just returns immediately - so no waiting is required - or whether there is something else amiss. You don't need the address-of operator in front of the thread function name. – Jonathan Leffler Feb 13 '11 at 21:43Program received signal: “EXC_BAD_ACCESS”.error. It won't return immediately -- it does some FTP client interactions and then comes back. None of the print statements that are within control get executed, for example. Nor do they return with the file that I sent them out to fetch. – Brian D Feb 13 '11 at 21:45controlwith a function that returns immediately and see if that avoids the segfault. If so then I'd look harder atcontrol. – David Heffernan Feb 13 '11 at 22:05