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. Only the thread calling fork() gets duplicate. The child process has to start any new threads. The parents threads are left alone.