Cleanup write_memory doc
This doc about write_memory seems outdated. gdb/ChangeLog: * corefile.c (write_memory): Update doc. * gdbcore.h (write_memory): Same.
This commit is contained in:
parent
31b7833d20
commit
cb6f16cf4f
@ -1,3 +1,8 @@
|
|||||||
|
2015-06-15 Simon Marchi <simon.marchi@ericsson.com>
|
||||||
|
|
||||||
|
* corefile.c (write_memory): Update doc.
|
||||||
|
* gdbcore.h (write_memory): Same.
|
||||||
|
|
||||||
2015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
* linux-tdep.c (enum filterflags): Make it from anonymous enum.
|
* linux-tdep.c (enum filterflags): Make it from anonymous enum.
|
||||||
|
@ -383,8 +383,8 @@ read_memory_typed_address (CORE_ADDR addr, struct type *type)
|
|||||||
return extract_typed_address (buf, type);
|
return extract_typed_address (buf, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Same as target_write_memory, but report an error if can't
|
/* See gdbcore.h. */
|
||||||
write. */
|
|
||||||
void
|
void
|
||||||
write_memory (CORE_ADDR memaddr,
|
write_memory (CORE_ADDR memaddr,
|
||||||
const bfd_byte *myaddr, ssize_t len)
|
const bfd_byte *myaddr, ssize_t len)
|
||||||
|
@ -101,10 +101,8 @@ extern void read_memory_string (CORE_ADDR, char *, int);
|
|||||||
|
|
||||||
CORE_ADDR read_memory_typed_address (CORE_ADDR addr, struct type *type);
|
CORE_ADDR read_memory_typed_address (CORE_ADDR addr, struct type *type);
|
||||||
|
|
||||||
/* This takes a char *, not void *. This is probably right, because
|
/* Same as target_write_memory, but report an error if can't
|
||||||
passing in an int * or whatever is wrong with respect to
|
write. */
|
||||||
byteswapping, alignment, different sizes for host vs. target types,
|
|
||||||
etc. */
|
|
||||||
|
|
||||||
extern void write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr,
|
extern void write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr,
|
||||||
ssize_t len);
|
ssize_t len);
|
||||||
|
Loading…
Reference in New Issue
Block a user