]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gprof/corefile.h
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / gprof / corefile.h
CommitLineData
43870aec
ILT
1#ifndef corefile_h
2#define corefile_h
5489fcc3
KR
3
4#include "bfd.h"
5
12516a37
KR
6extern bfd *core_bfd; /* bfd for core-file */
7extern int core_num_syms; /* # of entries in symbol-table */
8extern asymbol **core_syms; /* symbol table in a.out */
9extern asection *core_text_sect; /* core text section */
10extern PTR core_text_space; /* text space of a.out in core */
5489fcc3 11
c3de2a19
ILT
12extern int min_insn_size; /* size of smallest instruction, in bytes */
13extern int offset_to_code; /* offset (in bytes) of code from entry
14 address of routine */
15
12516a37
KR
16extern void core_init PARAMS ((const char *a_out_name));
17extern void core_get_text_space PARAMS ((bfd * core_bfd));
18extern void core_create_function_syms PARAMS ((bfd * core_bfd));
19extern void core_create_line_syms PARAMS ((bfd * core_bfd));
5489fcc3 20
43870aec 21#endif /* corefile_h */