xref: /openbsd/usr.bin/gprof/gprof.flat (revision 2cc97500)
1
2
3
4flat profile:
5
6 %         the percentage of the total running time of the
7time       program used by this function.
8
9cumulative a running sum of the number of seconds accounted
10 seconds   for by this function and those listed above it.
11
12 self      the number of seconds accounted for by this
13seconds    function alone.  This is the major sort for this
14           listing.
15
16calls      the number of times this function was invoked, if
17           this function is profiled, else blank.
18
19 self      the average number of milliseconds spent in this
20ms/call    function per call, if this function is profiled,
21           else blank.
22
23 total     the average number of milliseconds spent in this
24ms/call    function and its descendents per call, if this
25           function is profiled, else blank.
26
27name       the name of the function.  This is the minor sort
28           for this listing. The index shows the location of
29           the function in the gprof listing. If the index is
30           in parenthesis it shows where it would appear in
31           the gprof listing if it were to be printed.
32
33