sandy1028 has asked for the wisdom of the Perl Monks concerning the following question:
my $pm = new Parallel::ForkManager($tc+1); $pm->run_on_finish( sub { my ($pid, $exit_code, $ident) = @_; $tmp +Files[$ident] = undef; } ); foreach my $i (0..$#tmp) { # Forks and returns the pid for the child: my $pid = $pm->start($i) and next; $SIG{INT} = 'DEFAULT'; my $filename = $tmp[$i]->filename(); my $file = IO::File->new("<$filename") or die "Can't open $filen +ame\n"; while((my $line) = $file->getline()) { last unless defined($line); chomp $line; my ($dir, $file) = split(/\t/, $line); # my $process = shift; is created above # Calling this from another file $process->($dir, $file, $config, $log); } $pm->finish; # Terminates the child process }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: logging of process
by Anonymous Monk on Apr 28, 2009 at 07:08 UTC | |
|
Re: logging of process
by apl (Monsignor) on Apr 28, 2009 at 09:21 UTC | |
by sandy1028 (Sexton) on Apr 28, 2009 at 12:22 UTC | |
by BrowserUk (Patriarch) on Apr 28, 2009 at 12:32 UTC | |
|
Re: logging of process
by BrowserUk (Patriarch) on Apr 28, 2009 at 07:07 UTC |