Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[tools] document output format of sublog-report.pl
  • Loading branch information
moritz committed May 16, 2011
1 parent be887ad commit ee21f4b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tools/sublog-report.pl
Expand Up @@ -15,6 +15,19 @@
# each subroutine and the top eight callers for each:
# $ perl tools/sublog-report.pl sub.log
#
# The output is of the form
#
# <count> <routinename> (<subid>)
# <callcount> <caller> (<callersubid>)
# <callcount> <caller> (<callersubid>)
# ...
# <callcount> <routinename> (<subid>)
# ...
#
# where <count> is the number of times that <routinename>
# has been called. The indented lines list the routines
# that called it (<caller>), and how often it called them
# (<callcount>).

use warnings;
use strict;
Expand Down

0 comments on commit ee21f4b

Please sign in to comment.