--- Joshua Gatcomb <[EMAIL PROTECTED]>
wrote:
> Enhancements:
> 1.  Should be platform independent now
> 2.  Much greater control using ini configuration
> 3.  Output is "pretty"
> 4.  Lots of bugs squashed (probably more introduced)

I found a few and have erradicated them.  I also added
some new functionality.  You can now switch between
CPU time and real (wall-clock) time.  This was
actually pretty easy though I have to give credit to
fizbin from the Monastery:

require POSIX;
my $ticks = POSIX::sysconf( &POSIX::_SC_CLK_TCK );

my $then = Get_Time();
select(undef, undef, undef, 0.25);
print Get_Time() - $then;

sub Get_Time {
    return ( POSIX::times() )[0] / $clock_ticks;
}

I thought I was done fiddling with it yesterday, but I
am really done now - maybe.

I am going to move on to updating the benchit.pl and
webit.pl scripts to give a prettier output as was
requested and potentially see about changing the
storage method.

Joshua Gatcomb
a.k.a. Limbic~Region

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Attachment: parrotbench.gat
Description: parrotbench.gat

Reply via email to