in reply to error message "Free to wrong pool 2227b8 not 3d5a2aa0" being returned
use LWP::Simple; use Parallel::ForkManager; @links=( ["http://feeds.feedburner.com/Evolution101.xml","evo.xml"], ["http://feeds.wnyc.org/radiolab.xml","rl.xml"], ); my $pm = new Parallel::ForkManager(30); foreach my $linkarray (@links) { $pm->start and next; my ($link, $fn) = @$linkarray; if (getstore($link,$fn) != RC_OK) { warn "Cannot get $fn from $link" } $pm->finish; } $pm->wait_all_children;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: error message "Free to wrong pool 2227b8 not 3d5a2aa0" being returned
by eyepopslikeamosquito (Archbishop) on Jul 15, 2006 at 03:49 UTC | |
by greenrob (Initiate) on Jul 17, 2006 at 02:29 UTC |