From: Tom Tromey Date: Wed, 18 Dec 2013 04:21:17 +0000 (-0700) Subject: introduce remote_load X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9dd130a0f09e436482e7787fe1173ae06e39ade7;p=binutils-gdb.git introduce remote_load I used a refactoring script to add target_ops arguments to all the target methods. In order to make this script work a little better, this patch adds a new "remote_load" function; this eliminates the need to later change the signature of generic_load. 2014-02-19 Tom Tromey * remote.c (remote_load): New function. (init_remote_ops): Use it. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e80562d8579..83910b0a9a8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-02-19 Tom Tromey + + * remote.c (remote_load): New function. + (init_remote_ops): Use it. + 2014-02-19 Tom Tromey * common/linux-btrace.c (linux_supports_btrace): Add "ops" diff --git a/gdb/remote.c b/gdb/remote.c index e5bddb73856..9e0045adde5 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -11345,6 +11345,14 @@ remote_augmented_libraries_svr4_read (void) return rs->augmented_libraries_svr4_read; } +/* Implementation of to_load. */ + +static void +remote_load (char *name, int from_tty) +{ + generic_load (name, from_tty); +} + static void init_remote_ops (void) { @@ -11378,7 +11386,7 @@ Specify the serial device it is connected to\n\ remote_ops.to_insert_watchpoint = remote_insert_watchpoint; remote_ops.to_remove_watchpoint = remote_remove_watchpoint; remote_ops.to_kill = remote_kill; - remote_ops.to_load = generic_load; + remote_ops.to_load = remote_load; remote_ops.to_mourn_inferior = remote_mourn; remote_ops.to_pass_signals = remote_pass_signals; remote_ops.to_program_signals = remote_program_signals;