I am asking this Question due to a suggestion that the way Google Chrome instantiates new process would encourage Linux adoption; because forking a process is inherently faster than the method Windows uses. Whether or not this gives any perceived speed improvement in User Experience is debatable, but I came to think about the differences in Windows and Unix-type systems approaching process instantiation.
closed as exact duplicate by _ande_turner_ Oct 12 '08 at 7:50 |
|
|
Creating new processes on Windows has traditionally been a much more expensive operation than doing so in the unix world. This is (one of the reasons) why unix has tended to stay with fork and ignored multithreading while the Windows world went the other direction. My understanding is that process creation has been substantially streamlined in more recent versions of Windows, but I don't really follow things on that side, so I'm not positive that this has happened. As to the specific case of Chrome, tloach has mentioned in a comment that going to the internet is orders of magnitude slower than the worst implementation of process spawning, which is the most important thing here, really. No matter how much slower than unix Windows may or may not be at spawning processes, it's still irrelevant beside the time needed to contact a remote server. |
||
|
|
|
|
Typically on Unix you can use fork() with copy-on-write semantics, which means that the OS does not need to copy the entire process' address-space at once. Cygwin uses CreateProcess() to emulate fork(), and shell-scripts making heavy use of fork() run noticable slower under Cygwin. Although there are other performance issues in Cygwin as well, I believe CreateProcess() is a major culprit. |
||
|
|
|
|
You missed an important one in there: |
||
|
|
