19990502 sourceware import
[deliverable/binutils-gdb.git] / gprof / hist.h
CommitLineData
252b5132
RH
1#ifndef hist_h
2#define hist_h
3
4#include "bfd.h"
5
6extern bfd_vma s_lowpc; /* lowpc from the profile file */
7extern bfd_vma s_highpc; /* highpc from the profile file */
8extern bfd_vma lowpc, highpc; /* range profiled, in UNIT's */
9extern int hist_num_bins; /* number of histogram bins */
10extern int *hist_sample; /* code histogram */
11/*
12 * Scale factor converting samples to pc values: each sample covers
13 * HIST_SCALE bytes:
14 */
15extern double hist_scale;
16
17
18extern void hist_read_rec PARAMS ((FILE * ifp, const char *filename));
19extern void hist_write_hist PARAMS ((FILE * ofp, const char *filename));
20extern void hist_assign_samples PARAMS ((void));
21extern void hist_print PARAMS ((void));
22
23#endif /* hist_h */
This page took 0.026409 seconds and 4 git commands to generate.