/* Now, the threads all call exit(0) instead of returning. This kills the process as soon as the first thread exits. */ #include #include #include #include void *printme(void *ip) { int *i; i = (int *) ip; printf("Hi. I'm thread %d\n", *i); exit(0); } int main() { int i, ids[4]; pthread_t tids[4]; void *retval; for (i = 0; i < 4; i++) { ids[i] = i; if (pthread_create(tids+i, NULL, printme, ids+i) != 0) { perror("pthread_create"); exit(0); } } for (i = 0; i < 4; i++) { printf("Trying to join with thread %d\n", i); if (pthread_join(tids[i], &retval) != 0) { perror("join"); exit(1); } printf("Joined with thread %d\n", i); } return 0; }