diff options
Diffstat (limited to 'gdb/gdbserver/linux-x86-low.c')
-rw-r--r-- | gdb/gdbserver/linux-x86-low.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/gdbserver/linux-x86-low.c b/gdb/gdbserver/linux-x86-low.c index cb0169c..cafff6b 100644 --- a/gdb/gdbserver/linux-x86-low.c +++ b/gdb/gdbserver/linux-x86-low.c @@ -1007,7 +1007,7 @@ x86_supports_tracepoints (void) static void append_insns (CORE_ADDR *to, size_t len, const unsigned char *buf) { - write_inferior_memory (*to, buf, len); + target_write_memory (*to, buf, len); *to += len; } @@ -1385,7 +1385,7 @@ i386_install_fast_tracepoint_jump_pad (CORE_ADDR tpoint, CORE_ADDR tpaddr, offset = *jump_entry - (*trampoline + sizeof (jump_insn)); memcpy (buf, jump_insn, sizeof (jump_insn)); memcpy (buf + 1, &offset, 4); - write_inferior_memory (*trampoline, buf, sizeof (jump_insn)); + target_write_memory (*trampoline, buf, sizeof (jump_insn)); /* Use a 16-bit relative jump instruction to jump to the trampoline. */ offset = (*trampoline - (tpaddr + sizeof (small_jump_insn))) & 0xffff; @@ -1780,7 +1780,7 @@ amd64_write_goto_address (CORE_ADDR from, CORE_ADDR to, int size) } memcpy (buf, &diff, sizeof (int)); - write_inferior_memory (from, buf, sizeof (int)); + target_write_memory (from, buf, sizeof (int)); } static void @@ -2398,7 +2398,7 @@ i386_write_goto_address (CORE_ADDR from, CORE_ADDR to, int size) } memcpy (buf, &diff, sizeof (int)); - write_inferior_memory (from, buf, sizeof (int)); + target_write_memory (from, buf, sizeof (int)); } static void |