| 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 |
|
|---|
| 6 | void
|
|---|
| 7 | flat_blurb (file)
|
|---|
| 8 | FILE *file;
|
|---|
| 9 | {
|
|---|
| 10 | fputs ("\n", file);
|
|---|
| 11 | fputs (" % the percentage of the total running time of the\n", file);
|
|---|
| 12 | fputs ("time program used by this function.\n", file);
|
|---|
| 13 | fputs ("\n", file);
|
|---|
| 14 | fputs ("cumulative a running sum of the number of seconds accounted\n", file);
|
|---|
| 15 | fputs (" seconds for by this function and those listed above it.\n", file);
|
|---|
| 16 | fputs ("\n", file);
|
|---|
| 17 | fputs (" self the number of seconds accounted for by this\n", file);
|
|---|
| 18 | fputs ("seconds function alone. This is the major sort for this\n", file);
|
|---|
| 19 | fputs (" listing.\n", file);
|
|---|
| 20 | fputs ("\n", file);
|
|---|
| 21 | fputs ("calls the number of times this function was invoked, if\n", file);
|
|---|
| 22 | fputs (" this function is profiled, else blank.\n", file);
|
|---|
| 23 | fputs (" \n", file);
|
|---|
| 24 | fputs (" self the average number of milliseconds spent in this\n", file);
|
|---|
| 25 | fputs ("ms/call function per call, if this function is profiled,\n", file);
|
|---|
| 26 | fputs (" else blank.\n", file);
|
|---|
| 27 | fputs ("\n", file);
|
|---|
| 28 | fputs (" total the average number of milliseconds spent in this\n", file);
|
|---|
| 29 | fputs ("ms/call function and its descendents per call, if this \n", file);
|
|---|
| 30 | fputs (" function is profiled, else blank.\n", file);
|
|---|
| 31 | fputs ("\n", file);
|
|---|
| 32 | fputs ("name the name of the function. This is the minor sort\n", file);
|
|---|
| 33 | fputs (" for this listing. The index shows the location of\n", file);
|
|---|
| 34 | fputs (" the function in the gprof listing. If the index is\n", file);
|
|---|
| 35 | fputs (" in parenthesis it shows where it would appear in\n", file);
|
|---|
| 36 | fputs (" the gprof listing if it were to be printed.\n", file);
|
|---|
| 37 | }
|
|---|