* Gersh <[EMAIL PROTECTED]> [010327 14:14] wrote:
> 
> 
> On Tue, 27 Mar 2001, Alfred Perlstein wrote:
> 
> > it could be replaced with:
> > 
> > if (count % 10)
> >     printf("%d ", count);
> > 
> that acutally gives alot more output,  The basic idea was
> to only print out when it got to certian increments 10, 20
> Mainly becasue of the problem with serial connections :/
> 
> It looks and feels a bit slower to the human eye but it does
> benchmark alot faster.

That was a typo, it should have been:

  if (count % 10 == 0)

sorry. :)


-- 
-Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]]
Instead of asking why a piece of software is using "1970s technology,"
start asking why software is ignoring 30 years of accumulated wisdom.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to