Gangabass has asked for the wisdom of the Perl Monks concerning the following question:
So all threads are terminated immediately after start. In the previous versions of Komodo i have no such issue. What i can do with this? Thanks. Roman#!/usr/bin/perl use strict; use WWW::Mechanize; use FindBin qw($Bin); use Thread::Queue; use HTML::TreeBuilder::XPath; my @threads = map { threads->create( \&create_thread, $_ ) } ( 1 .. $config->{NUMBER_OF_THREADS} );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Debugging threaded code
by Anonymous Monk on Dec 01, 2011 at 10:01 UTC |