2005-01-27 Andrew Cagney <cagney@gnu.org>

* symfile-mem.c (do_target_read_memory): New function.
	(symbol_file_add_from_memory): Pass do_target_read_memory to
	bfd_elf_bfd_from_remote_memory.
	* corefile.c (write_memory): Update, make a copy of the read-only
	buffer.
	* target.c (target_read_memory): Update.
	(target_write_memory): Update, make a copy of the read-only
	buffer.
	* gdbcore.h (write_memory): Change buffer type to bfd_byte, make
	const.
	* target.h (target_read_memory, target_write_memory): Change
	buffer type to bfd_byte; for write_memory, make it const.
This commit is contained in:
Andrew Cagney
2005-01-27 20:09:10 +00:00
parent 89f5065b88
commit 10e2d419a3
6 changed files with 38 additions and 11 deletions

View File

@@ -347,11 +347,13 @@ read_memory_typed_address (CORE_ADDR addr, struct type *type)
/* Same as target_write_memory, but report an error if can't write. */
void
write_memory (CORE_ADDR memaddr, char *myaddr, int len)
write_memory (CORE_ADDR memaddr, const bfd_byte *myaddr, int len)
{
int status;
status = target_write_memory (memaddr, myaddr, len);
bfd_byte *bytes = alloca (len);
memcpy (bytes, myaddr, len);
status = target_write_memory (memaddr, bytes, len);
if (status != 0)
memory_error (status, memaddr);
}