In C++ using pthreads, what happens to your other threads if one of your threads calls fork?
It appears that the threads do not follow. In my case, I am trying to c
Nothing, unless one happens to be preempted by the thread running the new process.