Merge branch 'vendor/BYACC'
[dragonfly.git] / contrib / binutils-2.22 / gprof / flat_bl.c
1 /* ==> Do not modify this file!!  It is created automatically
2    from flat_bl.m using the gen-c-prog.awk script.  <== */
3
4 #include <stdio.h>
5 #include "ansidecl.h"
6
7 void  flat_blurb (FILE *);
8 void
9 flat_blurb (file)
10      FILE *file;
11 {
12   fputs ("\n", file);
13   fputs (" %         the percentage of the total running time of the\n", file);
14   fputs ("time       program used by this function.\n", file);
15   fputs ("\n", file);
16   fputs ("cumulative a running sum of the number of seconds accounted\n", file);
17   fputs (" seconds   for by this function and those listed above it.\n", file);
18   fputs ("\n", file);
19   fputs (" self      the number of seconds accounted for by this\n", file);
20   fputs ("seconds    function alone.  This is the major sort for this\n", file);
21   fputs ("           listing.\n", file);
22   fputs ("\n", file);
23   fputs ("calls      the number of times this function was invoked, if\n", file);
24   fputs ("           this function is profiled, else blank.\n", file);
25   fputs (" \n", file);
26   fputs (" self      the average number of milliseconds spent in this\n", file);
27   fputs ("ms/call    function per call, if this function is profiled,\n", file);
28   fputs ("         else blank.\n", file);
29   fputs ("\n", file);
30   fputs (" total     the average number of milliseconds spent in this\n", file);
31   fputs ("ms/call    function and its descendents per call, if this \n", file);
32   fputs ("         function is profiled, else blank.\n", file);
33   fputs ("\n", file);
34   fputs ("name       the name of the function.  This is the minor sort\n", file);
35   fputs ("           for this listing. The index shows the location of\n", file);
36   fputs ("         the function in the gprof listing. If the index is\n", file);
37   fputs ("         in parenthesis it shows where it would appear in\n", file);
38   fputs ("         the gprof listing if it were to be printed.\n", file);
39 }