diff options
author | Jim Blandy <jimb@codesourcery.com> | 2004-05-02 10:14:02 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2004-05-02 10:14:02 +0000 |
commit | eb4556d736ee14965782a320db1496fb070e54c3 (patch) | |
tree | 3fcf21764625660cd2d0cc44d1f9a5ab42129959 /gdb/symfile.h | |
parent | ad7b9a3686f628880fa3d7aa900f1211ae27e90e (diff) | |
download | gdb-eb4556d736ee14965782a320db1496fb070e54c3.zip gdb-eb4556d736ee14965782a320db1496fb070e54c3.tar.gz gdb-eb4556d736ee14965782a320db1496fb070e54c3.tar.bz2 |
Move the symbol-file-from-memory functions into their own file.
* symfile-mem.c, symfile-mem.h: New files.
* symfile.c (symbol_file_add_from_bfd): New function.
(symbol_file_add): Call symbol_file_add_from_bfd.
(symbol_file_add_from_memory, add_symbol_file_from_memory_command):
Moved to symfile-mem.c.
(_initialize_symfile): Move definition of
add-symbol-file-from-memory command to symfile-mem.c.
* symfile.h (symbol_file_add_from_bfd): New declaration.
* config/i386/linux.mt (TDEPFILES): Add symfile-mem.o.
* config/powerpc/linux.mt (TDEPFILES): Same.
* Makefile.in (SFILES): Add symfile-mem.c.
(symfile_mem_h): New variable.
(HFILES_NO_SRCDIR): Add symfile-mem.h.
(symfile-mem.o): New rule.
Diffstat (limited to 'gdb/symfile.h')
-rw-r--r-- | gdb/symfile.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/symfile.h b/gdb/symfile.h index 61809ba..4c08596 100644 --- a/gdb/symfile.h +++ b/gdb/symfile.h @@ -189,6 +189,10 @@ extern void new_symfile_objfile (struct objfile *, int, int); extern struct objfile *symbol_file_add (char *, int, struct section_addr_info *, int, int); +extern struct objfile *symbol_file_add_from_bfd (bfd *, int, + struct section_addr_info *, + int, int); + /* Create a new section_addr_info, with room for NUM_SECTIONS. */ extern struct section_addr_info *alloc_section_addr_info (size_t |