![]() |
|
Welcome to the Monastery | |
PerlMonks |
Re: What is the difference between Windows fork an Unix fork ?by Corion (Patriarch) |
on Dec 11, 2006 at 07:58 UTC ( [id://589001]=note: print w/replies, xml ) | Need Help?? |
fork() on Windows does not exist. It is emulated through a variety of options, depending on whether you're using the native ("MSWin32") Perl compiled with MSVC, or the Cygwin Perl. fork() on Cygwin likely works I guess, and on MSWin32, it works for those who implemented it, but I can only recommend to stay away from it and use other mechanisms of launching programs, like system(1,...) or system("start $command"); or Win32::Process.
In Section
Seekers of Perl Wisdom
|
|