Fix capitialisation of setnaces in comment.
[deliverable/binutils-gdb.git] / gprof / corefile.h
CommitLineData
252b5132
RH
1#ifndef corefile_h
2#define corefile_h
3
4#include "bfd.h"
5
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 */
11
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
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));
20
21#endif /* corefile_h */
This page took 0.043038 seconds and 4 git commands to generate.