in reply to Re^2: Perl crashing with Parallel::ForkManager and WWW::Mechanize
in thread Perl crashing with Parallel::ForkManager and WWW::Mechanize
When a child process is spawned by the Parent Process
When you use fork on Windows, you do not create a child process. You spawn a thread within the existing process that simulates forking.
More generally -- unless you explicitly restrict them -- all threads are eligible to run on all available processors.
And processes are threads -- on all platforms. Even a single-threaded process, is a thread at the OS level.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Perl crashing with Parallel::ForkManager and WWW::Mechanize
by NeonFlash (Novice) on Aug 06, 2012 at 07:24 UTC |