source: binutils/trunk/gprof/flat_bl.c@ 1973

Last change on this file since 1973 was 1973, checked in by Silvan Scherrer, 8 years ago

binutils: update trunk to version 2.27

File size: 2.1 KB
Line 
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
7void flat_blurb (FILE *);
8void
9flat_blurb (FILE *file)
10{
11 fputs ("\n", file);
12 fputs (" % the percentage of the total running time of the\n", file);
13 fputs ("time program used by this function.\n", file);
14 fputs ("\n", file);
15 fputs ("cumulative a running sum of the number of seconds accounted\n", file);
16 fputs (" seconds for by this function and those listed above it.\n", file);
17 fputs ("\n", file);
18 fputs (" self the number of seconds accounted for by this\n", file);
19 fputs ("seconds function alone. This is the major sort for this\n", file);
20 fputs (" listing.\n", file);
21 fputs ("\n", file);
22 fputs ("calls the number of times this function was invoked, if\n", file);
23 fputs (" this function is profiled, else blank.\n", file);
24 fputs ("\n", file);
25 fputs (" self the average number of milliseconds spent in this\n", file);
26 fputs ("ms/call function per call, if this function is profiled,\n", file);
27 fputs (" else blank.\n", file);
28 fputs ("\n", file);
29 fputs (" total the average number of milliseconds spent in this\n", file);
30 fputs ("ms/call function and its descendents per call, if this\n", file);
31 fputs (" function is profiled, else blank.\n", file);
32 fputs ("\n", file);
33 fputs ("name the name of the function. This is the minor sort\n", file);
34 fputs (" for this listing. The index shows the location of\n", file);
35 fputs (" the function in the gprof listing. If the index is\n", file);
36 fputs (" in parenthesis it shows where it would appear in\n", file);
37 fputs (" the gprof listing if it were to be printed.\n", file);
38 fputs ("
39\n", file);
40 fputs ("Copyright (C) 2012-2016 Free Software Foundation, Inc.\n", file);
41 fputs ("\n", file);
42 fputs ("Copying and distribution of this file, with or without modification,\n", file);
43 fputs ("are permitted in any medium without royalty provided the copyright\n", file);
44 fputs ("notice and this notice are preserved.\n", file);
45}
Note: See TracBrowser for help on using the repository browser.