kernel - Do a better job locking CAM ref counts
[dragonfly.git] / contrib / binutils-2.25 / gprof / flat_bl.c
blob4c04d6ebedb55034172ed3061545db7bbd07d2d2
1 /* ==> Do not modify this file!! It is created automatically
2 from flat_bl.m using the gen-c-prog.awk script. <== */
4 #include <stdio.h>
5 #include "ansidecl.h"
7 void flat_blurb (FILE *);
8 void
9 flat_blurb (file)
10 FILE *file;
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 fputs ("\f\n", file);
40 fputs ("Copyright (C) 2012-2014 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);