|
|
|
|
|
by slavik81
3700 days ago
|
|
Forking and threading are different things. Forking creates new processes and duplicates memory. It raises entirely different issues from multi-threading, which does neither. See: http://stackoverflow.com/q/2483041/331041 They discussed forking, but did not discuss multi-threading. |
|