Tue Feb 3 14:25:25 1998 Brent Baccala <baccala@freesoft.org>
[deliverable/binutils-gdb.git] / gprof / gmon_io.h
CommitLineData
5489fcc3
KR
1#ifndef gmon_io_h
2#define gmon_io_h
3
4#include "bfd.h"
5#include "gmon.h"
6
7#define INPUT_HISTOGRAM (1<<0)
8#define INPUT_CALL_GRAPH (1<<1)
9#define INPUT_BB_COUNTS (1<<2)
10
12516a37
KR
11extern int gmon_input; /* what input did we see? */
12extern int gmon_file_version; /* file version are we dealing with */
5489fcc3 13
12516a37
KR
14extern bfd_vma get_vma PARAMS ((bfd * abfd, bfd_byte * addr));
15extern void put_vma PARAMS ((bfd * abfd, bfd_vma val, bfd_byte * addr));
5489fcc3 16
12516a37
KR
17extern void gmon_out_read PARAMS ((const char *filename));
18extern void gmon_out_write PARAMS ((const char *filename));
5489fcc3
KR
19
20#endif /* gmon_io_h */
This page took 0.101934 seconds and 4 git commands to generate.