I guess the question says it all.
I want to fork on windows. What is the most similar operation and how do I use it.
|
|
|
Cygwin has fully featured fork() on Windows. Thus if using Cygwin is acceptable for you, then the problem is solved in the case performance is not an issue. Otherwise you can take a look at how Cygwin implements fork(). From a quite old Cygwin's architecture doc:
Sounds like a lot of work, doesn't it? And yes, it is slooooow. EDIT: the doc is slightly outdated. The current implementation is somewhat different, thanks to this excellent answer for the reference. |
|||||
|
|
Well, windows doesn't really have anything quite like it. Especially since fork can be used to conceptually create a thread or a process in *nix. So, I'd have to say: CreateProcess()/CreateProcessEx() and CreateThread() (I've heard that for C applications, _beginthreadex() is better). |
|||
|
|
|
I certainly don't know the details on this because I've never done it it, but the native NT API has a capability to fork a process (the POSIX subsystem on Windows needs this capability - I'm not sure if the POSIX subsystem is even supported anymore). A search for ZwCreateProcess() should get you some more details - for example this: Though note that Corinna Vinschen indicates that Cygwin found this unreliable: |
|||||||||||
|
|
The following document provides some information on porting code from UNIX to Win32: http://msdn.microsoft.com/en-us/library/y23kc048(vs.71).aspx Among other things, it indicates that the process model is quite different between the two systems and recommends consideration of CreateProcess and CreateThread where fork()-like behavior is required. |
|||
|
|
|
Your best options are CreateProcess() or CreateThread(). There is more information on porting here. |
|||
|
|
|
The UNIX process creation is quite different. It basically duplicates the current process almost in total, each in their own address space and starts running them separately. The real equivalent of If you're porting software to Windows and you don't mind a translation layer, Cygwin may provide the capability that you want (I've never had the need to test |
|||
|
|
|
People have tried to implement fork on Windows. This is the closest thing to it I can find: Taken from: http://doxygen.scilab.org/5.3/d0/d8f/forkWindows_8c_source.html#l00216
|
||||
|
|
|
There is no easy way to emulate fork() on Windows. I suggest you to use threads instead. |
|||
|
|
|
The closest you say... Let me think... This must be fork() I guess :) For details see Does Interix implement fork()? |
|||
|
|