in reply to Parallel::ForkManager install fails

P::FM doesn't make much sense in Windows, which doesn't have the ability to fork.[1] Perl emulates it using threads. So why not just use threads directly?


  1. Not entirely impossible. Cygwin and MSYS use some internals to achieve it, or at least something closer than using threads.