Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Re: Re: sleep in while loop

by Shendal (Hermit)
on Aug 05, 2002 at 16:06 UTC ( [id://187721]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: sleep in while loop
in thread sleep in while loop

You may be getting bitten by buffering. Try this:
$|++; # force auto-flush (see perldoc perlvar) while (1) { if ($cond == 1) { print "1\n"; } else { print "2\n"; } sleep 10; }

Cheers,
Shendal

Replies are listed 'Best First'.
Re: Re: Re: Re: sleep in while loop
by Anonymous Monk on Aug 05, 2002 at 16:10 UTC
    Thanks - buffering was biting my proverbial ***- by the way the code in the loop was not the actual code - sorry to confuse the issue.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://187721]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (2)
As of 2024-04-24 15:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found