What you are doing makes no sense.

And the way you are doing it makes no sense. This:

while ($test <= 100) { my $thr1 = threads->create(\&progress_count, $test); $test += 1; $thr1->join(); }

Is (unreliably) equivalent to doing this:

while ($test <= 100) { $test += 1; print $test; }

Except that:

  1. it is is vastly more inefficient;

    Because you are building and running and then throwing away a whole new thread in order to execute that single print statement.

    Which is a complete nonsense as it has no advantages and masses of disadvantages.

  2. it is unreliable;

    Because there is no guarantee one way or the other that by the time the thread has been built and the print statement is executed, whether the increment of the variable will have been done or not.

That is, the while loop cannot continue until the print statement (in the thread) has run; so nothing is being "done in parallel".

It doesn't even make sense as a beginners first exploratory step in using threads because it is like trying to test whether a bone china cup can safely contain concentrated sulphuric acid; because regardless of the outcome of the test, nothing useful is being done by doing so.

If you think you have a real application for threading and are stuck on how to do it; describe it and we'll try to help you.

If not, stop playing; because your misunderstanding is such that all you will do is acquire knowledge of how not to use threads.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

In reply to Re^7: Threading in a loop by BrowserUk
in thread Threading in a loop by jerre_111

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.