Hello Monks,
I have a irriating thread(s) problem.

We have the following code:
Everything looks fine but......

use threads; use threads : shrared; foreach $host (@list_of_nodes) #we are connecting other PCs { threads->new(\&somefunction, $host); } (threads->list)[0]->join while threads->list;
The "somefunction" has nothing special in it, just some print statements and calls to show host name, ip address, etc.....

I have a small handle on Perl threads, I'm a C++ developer, so Perl causes me no end of trouble :)

The problem that we keep encountering is that randomly the threads hang or never return.

I've looked through my Perl books, but there is not much documentation and the web is not much more help.

What can be done to kill the stray thead and warn the user that a thread has gone on to la-la-land. Is there a way to terminate this thread?

Thanks

2006-06-02 Retitled by jeffa, as per Monastery guidelines
Original title: 'thread help please'


In reply to How to terminate threads that hang or never return? by JFarr

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.