in reply to Re: I want to forfeit my timeshare
in thread I want to forfeit my timeshare
Normally we'd do something like this:
while (1) { foreach ( $s -> can_read) { recv $_, $buffer, 1000; } print "."; }
but as a recent petitioner noted, the CPU use hits 95%. Of course that's because it's using up all the available idle time, and not actually cutting into another processes time, but it's still not neat. And there's no way to get away from that select statement.
____________________
Jeremy
I didn't believe in evil until I dated it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: I want to forfeit my timeshare
by John M. Dlugosz (Monsignor) on Aug 25, 2001 at 00:02 UTC | |
by jepri (Parson) on Aug 25, 2001 at 01:35 UTC | |
by John M. Dlugosz (Monsignor) on Aug 25, 2001 at 02:34 UTC |