aboutsummaryrefslogtreecommitdiff
path: root/gdb/symfile.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2004-04-15 21:39:27 +0000
committerRoland McGrath <roland@gnu.org>2004-04-15 21:39:27 +0000
commit5417f6dc82e5c731b8af2bdad80edd29a21c59c7 (patch)
tree7268973dcaa104fba4e46ca17f0a8258aaebdd5a /gdb/symfile.h
parent78cef34b48f85a5a79675fe0760e0ce17d0d7d25 (diff)
downloadgdb-5417f6dc82e5c731b8af2bdad80edd29a21c59c7.zip
gdb-5417f6dc82e5c731b8af2bdad80edd29a21c59c7.tar.gz
gdb-5417f6dc82e5c731b8af2bdad80edd29a21c59c7.tar.bz2
2004-04-08 Roland McGrath <roland@redhat.com>
* symfile.c (symbol_file_add_with_addrs_or_offsets): Take ABFD as argument instead of NAME. (symbol_file_add, reread_separate_symbols): Call symfile_bfd_open in call to symbol_file_add_with_addrs_or_offsets. (build_addr_info): New function, helper for ... (symbol_file_add_from_memory): New function. (add_symbol_file_from_memory_command): New function using that. (_initialize_symfile): Register it for add-symbol-file-from-memory. (pre_add_symbol_hook): Add const to argument type. * symfile.h (symbol_file_add_from_memory): Declare it.
Diffstat (limited to 'gdb/symfile.h')
-rw-r--r--gdb/symfile.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/symfile.h b/gdb/symfile.h
index 6b600ea..61809ba 100644
--- a/gdb/symfile.h
+++ b/gdb/symfile.h
@@ -302,6 +302,12 @@ extern CORE_ADDR symbol_overlayed_address (CORE_ADDR, asection *);
/* Load symbols from a file. */
extern void symbol_file_add_main (char *args, int from_tty);
+/* Read inferior memory at ADDR to find the header of a loaded object file
+ and read its in-core symbols out of inferior memory. TEMPL is a bfd
+ representing the target's format. */
+extern struct objfile *symbol_file_add_from_memory (bfd *templ, CORE_ADDR addr,
+ int from_tty);
+
/* Clear GDB symbol tables. */
extern void symbol_file_clear (int from_tty);