I liked the thread idea. How are threads on overhead and processing? The code below seems to work well. However I get the following message when the "Processing Complete" message is printed: "A thread exited while 2 other threads were still running.". Any idea why?
use threads;
use threads::shared;
use strict;
$|++;
my $stream = *STDOUT;
my $thingy = [ "\\", "|", "/", "-" ];
my $rate = 0.175;
my $step = 0;
my $spin_stop : shared;
$spin_stop = 0;
print "Processing...";
my $thread = threads->create(\&_spin);
select(undef,undef,undef, 5);
print "\nProcessing Completed\n";
$spin_stop = 1;
sub _spin {
SPIN: while(1) {
my $old_fh = select($stream);
local $| = 1;
print $stream $$thingy[$step],
chr(8) x length($$thingy[$step]);
select($old_fh);
$step = ( $step+1 > $#$thingy ? 0 : $step+1 );
select(undef,undef,undef, $rate);
last SPIN if($spin_stop == 1);
}
return;
}
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.