Event-Lib
    
    
  
  
  
view release on metacpan or search on metacpan
scripts/eprof view on Meta::CPAN
#!/usr/bin/perl
use Text::Table;
local @ARGV = shift || "eprof.out";
my (%times, %calls);
while (<>) {
    chomp;
    my ($func, $msecs) = split;
    $times{ $func } += $msecs;
    $calls{ $func}++;
}
    
  
  
  
( run in 0.591 second using v1.01-cache-2.11-cpan-0a6323c29d9 )