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.
This commit is contained in:
Roland McGrath
2004-04-15 21:39:27 +00:00
parent 78cef34b48
commit 5417f6dc82
2 changed files with 195 additions and 99 deletions

View File

@@ -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);