in reply to Re: Child reading from Parent
in thread Child reading from Parent
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; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Child reading from Parent
by icius (Sexton) on Feb 20, 2003 at 00:25 UTC | |
|
Re: Re: Re: Child reading from Parent
by Jenda (Abbot) on Feb 20, 2003 at 13:57 UTC |