Folks,
 
(forgive the HTML email, my outlook is kinda whacking on me ATM)
I have the following benchmark line in my perl code
 
my  $etime = timeit(1, \&get_errors);
more code
printf OFN "egrep\t: %s\n", timestr($etime);
 
is there a way to manipulate the timestr output? The function it calls has
4 5 second delays within it, I would like the timestr output to no report
those delay's. Is there a way to take $etime and subtract 20 seconds from
it to get the "actual" time the function took - the delays?
 
Regards,
Ron

Reply via email to