The fork() emulation is implemented at the level of the Perl interpreter. What this means in general is that running fork() will actually clone the running interpreter and all its state, and run the cloned interpreter in a separate thread, beginning execution in the new thread just after the point where the fork() was called in the parent. We will refer to the thread that implements this child "process" as the pseudo-process.I'm not sure what "separate thread" means. I have a six processor win10 system and I have a very CPU intensive program that I can easily carve into parallel processes. If I just fork() them, will these process be able to run in parallel on separate processors?
In reply to Parallel Processing on win10 by BernieC
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |