* corefile.c (core_init): Use a separate local variable,
[deliverable/binutils-gdb.git] / gprof / corefile.h
index a876d620b85c759075d6b2544f055c96c44457e4..87237921f3fef83bf5a97594bd67d2fdd5304e19 100644 (file)
@@ -1,6 +1,6 @@
 /* corefile.h
 
-   Copyright 2000, 2001 Free Software Foundation, Inc.
+   Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
 
@@ -21,7 +21,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 #ifndef corefile_h
 #define corefile_h
 
-#include "bfd.h"
+struct function_map
+{
+  char *function_name;
+  char *file_name;
+};
+
+extern struct function_map *symbol_map;
+extern unsigned int symbol_map_count;
 
 extern bfd *core_bfd;          /* BFD for core-file.  */
 extern int core_num_syms;      /* # of entries in symbol-table.  */
@@ -34,7 +41,7 @@ extern int offset_to_code;    /* Offset (in bytes) of code from entry
 
 extern void core_init                  PARAMS ((const char *));
 extern void core_get_text_space        PARAMS ((bfd *));
-extern void core_create_function_syms  PARAMS ((bfd *));
-extern void core_create_line_syms      PARAMS ((bfd *));
+extern void core_create_function_syms  PARAMS ((void));
+extern void core_create_line_syms      PARAMS ((void));
 
 #endif /* corefile_h */
This page took 0.023498 seconds and 4 git commands to generate.