http://www.perlmonks.org?node_id=1029884


in reply to Re^2: Threading in a loop
in thread Threading in a loop

Your program finishes too fast. Try this:

use threads; use threads::shared; my $test :shared; $test = 0; testing_thread(); sub testing_thread { my $thr1 = threads->create(\&progress_count, $test); while ($test <= 1000000) { $test += 1; } $thr1->join(); } sub progress_count { while( $test < 1000000 ) { print $test, " \n"; } }

Replies are listed 'Best First'.
Re^4: Threading in a loop
by jerre_111 (Sexton) on Apr 22, 2013 at 14:26 UTC

    I'm sorry to say, but your code is not quite right.

    When you do it like that, the printing and counting of the variable won't run parallel. Resulting in seeing only fragments of the counting

    But thanks for the effort!

      Is that not expected? When you asynchronously increment the variable and print the variable it will not be in line. There is nothing in the code to synchronize the two.

        When you execute the following code you get a synchronised counting/printing action

        use threads; use threads::shared; my $test :shared; $test = 0; testing_thread(); sub testing_thread { while ($test <= 100) { my $thr1 = threads->create(\&progress_count, $test); $test += 1; $thr1->join(); } } sub progress_count { print $test, " \n"; }