aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/ChangeLog
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2019-08-14 09:18:21 -0600
committerTom Tromey <tromey@adacore.com>2019-08-15 07:42:21 -0600
commit4196ab2a6d348f76c0e5e78252e44d9c631636d2 (patch)
tree94cdb8e141b9a10aa46f5234ae0ee5219443b872 /gdb/gdbserver/ChangeLog
parentc6778d00df0fbc7fe53801717eb934a5d7b9674a (diff)
downloadgdb-4196ab2a6d348f76c0e5e78252e44d9c631636d2.zip
gdb-4196ab2a6d348f76c0e5e78252e44d9c631636d2.tar.gz
gdb-4196ab2a6d348f76c0e5e78252e44d9c631636d2.tar.bz2
Replace write_inferior_memory with target_write_memory
target_write_memory is just a simple wrapper for write_inferior_memory. Because target_write_memory is needed for gdbsupport, and because gdb uses the name "target_write_memory" everywhere, this patch renames write_inferior_memory and removes the wrapper. I think this brings gdb and gdbserver slightly more in sync. gdb/gdbserver/ChangeLog 2019-08-15 Tom Tromey <tromey@adacore.com> * tracepoint.c (write_inferior_data_pointer) (write_inferior_integer, write_inferior_int8) (write_inferior_uinteger, m_tracepoint_action_download) (r_tracepoint_action_download, x_tracepoint_action_download) (l_tracepoint_action_download, clear_inferior_trace_buffer) (download_agent_expr, download_tracepoint_1) (download_trace_state_variables, upload_fast_traceframes): Update. * server.c (gdb_write_memory): Update. * remote-utils.c (relocate_instruction): Update. * proc-service.c (ps_pdwrite): Update. * mem-break.c (remove_memory_breakpoint) (delete_fast_tracepoint_jump, set_fast_tracepoint_jump) (uninsert_fast_tracepoint_jumps_at) (reinsert_fast_tracepoint_jumps_at): Update. * linux-x86-low.c (append_insns) (i386_install_fast_tracepoint_jump_pad) (amd64_write_goto_address, i386_write_goto_address): Update. * linux-s390-low.c (append_insns, s390_write_goto_address): Update. * linux-ppc-low.c (ppc_relocate_instruction) (ppc_install_fast_tracepoint_jump_pad, emit_insns) (ppc_write_goto_address): Update. * linux-aarch64-low.c (append_insns): Update. * target.h (struct target_ops): Update. (write_inferior_memory): Don't declare. * target.c (target_write_memory): Rename from write_inferior_memory. Remove old target_write_memory.
Diffstat (limited to 'gdb/gdbserver/ChangeLog')
-rw-r--r--gdb/gdbserver/ChangeLog30
1 files changed, 30 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index e4ad220..f536686 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,5 +1,35 @@
2019-08-15 Tom Tromey <tromey@adacore.com>
+ * tracepoint.c (write_inferior_data_pointer)
+ (write_inferior_integer, write_inferior_int8)
+ (write_inferior_uinteger, m_tracepoint_action_download)
+ (r_tracepoint_action_download, x_tracepoint_action_download)
+ (l_tracepoint_action_download, clear_inferior_trace_buffer)
+ (download_agent_expr, download_tracepoint_1)
+ (download_trace_state_variables, upload_fast_traceframes): Update.
+ * server.c (gdb_write_memory): Update.
+ * remote-utils.c (relocate_instruction): Update.
+ * proc-service.c (ps_pdwrite): Update.
+ * mem-break.c (remove_memory_breakpoint)
+ (delete_fast_tracepoint_jump, set_fast_tracepoint_jump)
+ (uninsert_fast_tracepoint_jumps_at)
+ (reinsert_fast_tracepoint_jumps_at): Update.
+ * linux-x86-low.c (append_insns)
+ (i386_install_fast_tracepoint_jump_pad)
+ (amd64_write_goto_address, i386_write_goto_address): Update.
+ * linux-s390-low.c (append_insns, s390_write_goto_address):
+ Update.
+ * linux-ppc-low.c (ppc_relocate_instruction)
+ (ppc_install_fast_tracepoint_jump_pad, emit_insns)
+ (ppc_write_goto_address): Update.
+ * linux-aarch64-low.c (append_insns): Update.
+ * target.h (struct target_ops): Update.
+ (write_inferior_memory): Don't declare.
+ * target.c (target_write_memory): Rename from
+ write_inferior_memory. Remove old target_write_memory.
+
+2019-08-15 Tom Tromey <tromey@adacore.com>
+
* target.c (write_inferior_memory): Use std::vector.
2019-08-06 Frank Ch. Eigler <fche@redhat.com>