* Makefile.in (maintainer-clean-subdir): Fix handling of empty
[deliverable/binutils-gdb.git] / gprof / gmon_io.h
CommitLineData
252b5132
RH
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
11extern int gmon_input; /* what input did we see? */
12extern int gmon_file_version; /* file version are we dealing with */
13
14extern bfd_vma get_vma PARAMS ((bfd * abfd, bfd_byte * addr));
15extern void put_vma PARAMS ((bfd * abfd, bfd_vma val, bfd_byte * addr));
16
17extern void gmon_out_read PARAMS ((const char *filename));
18extern void gmon_out_write PARAMS ((const char *filename));
19
20#endif /* gmon_io_h */
This page took 0.044396 seconds and 4 git commands to generate.