File: flat_bl.c

package info (click to toggle)
gclcvs 2.7.0-101
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 135,252 kB
  • ctags: 174,324
  • sloc: ansic: 986,459; asm: 311,430; lisp: 242,735; exp: 45,962; makefile: 42,669; sh: 30,705; cpp: 13,316; yacc: 6,093; perl: 3,454; tcl: 3,179; lex: 1,620; sed: 688; pascal: 175; awk: 56; fortran: 24; csh: 23
file content (39 lines) | stat: -rw-r--r-- 1,847 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* ==> Do not modify this file!!  It is created automatically
   from flat_bl.m using the gen-c-prog.awk script.  <== */

#include <stdio.h>
#include "ansidecl.h"

void  flat_blurb (FILE *);
void
flat_blurb (file)
     FILE *file;
{
  fputs ("\n", file);
  fputs (" %         the percentage of the total running time of the\n", file);
  fputs ("time       program used by this function.\n", file);
  fputs ("\n", file);
  fputs ("cumulative a running sum of the number of seconds accounted\n", file);
  fputs (" seconds   for by this function and those listed above it.\n", file);
  fputs ("\n", file);
  fputs (" self      the number of seconds accounted for by this\n", file);
  fputs ("seconds    function alone.  This is the major sort for this\n", file);
  fputs ("           listing.\n", file);
  fputs ("\n", file);
  fputs ("calls      the number of times this function was invoked, if\n", file);
  fputs ("           this function is profiled, else blank.\n", file);
  fputs (" \n", file);
  fputs (" self      the average number of milliseconds spent in this\n", file);
  fputs ("ms/call    function per call, if this function is profiled,\n", file);
  fputs ("	   else blank.\n", file);
  fputs ("\n", file);
  fputs (" total     the average number of milliseconds spent in this\n", file);
  fputs ("ms/call    function and its descendents per call, if this \n", file);
  fputs ("	   function is profiled, else blank.\n", file);
  fputs ("\n", file);
  fputs ("name       the name of the function.  This is the minor sort\n", file);
  fputs ("           for this listing. The index shows the location of\n", file);
  fputs ("	   the function in the gprof listing. If the index is\n", file);
  fputs ("	   in parenthesis it shows where it would appear in\n", file);
  fputs ("	   the gprof listing if it were to be printed.\n", file);
}