It will block in start until a child ends.
By the way,
is better written asfor my $command (@commands) { $manager->start and next; ... system( $command ); $manager->finish; }
for my $command (@commands) { $manager->start and next; ... exec( $command ); $manager->finish; }
since all finish does is end the process.
In reply to Re: help with Parallel:ForkManager
by ikegami
in thread help with Parallel:ForkManager
by arthurs
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |