Comment by cryptonector
7 years ago
Yeah, it's not really cheap at all. However! vfork() is cheap, very very cheap, though, of course, you then have to follow it up with an exec(), and the cost of that on Windows depends on the setup cost of the executable being exec'ed.
Part of the problem is the DLLs, as many have mentioned, and also the fact that each statically links in its own CRT (C run-time). The shared C run-time MSFT is working on should help here. As should more lazy loading and setup.
> Part of the problem is the DLLs, as many have mentioned, and also the fact that each statically links in its own CRT (C run-time)
No, that isn't the case on DLLs shipped with Windows.
But it is for 3rd party DLLs.
Well, that depends on the DLL.