diff options
Diffstat (limited to 'gdb/gdbserver/target.h')
-rw-r--r-- | gdb/gdbserver/target.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/gdbserver/target.h b/gdb/gdbserver/target.h index 434bfa9..67167cc 100644 --- a/gdb/gdbserver/target.h +++ b/gdb/gdbserver/target.h @@ -167,7 +167,7 @@ struct target_ops int (*read_memory) (CORE_ADDR memaddr, unsigned char *myaddr, int len); /* Write memory to the inferior process. This should generally be - called through write_inferior_memory, which handles breakpoint shadowing. + called through target_write_memory, which handles breakpoint shadowing. Write LEN bytes from the buffer at MYADDR to MEMADDR. @@ -726,9 +726,6 @@ void done_accessing_memory (void); int read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len); -int write_inferior_memory (CORE_ADDR memaddr, const unsigned char *myaddr, - int len); - int set_desired_thread (); const char *target_pid_to_str (ptid_t); |