mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-13 13:49:00 +08:00
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 <tromey@redhat.com> * remote.c (remote_load): New function. (init_remote_ops): Use it.
This commit is contained in:
parent
46917d26c8
commit
9dd130a0f0
@ -1,3 +1,8 @@
|
||||
2014-02-19 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* remote.c (remote_load): New function.
|
||||
(init_remote_ops): Use it.
|
||||
|
||||
2014-02-19 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* common/linux-btrace.c (linux_supports_btrace): Add "ops"
|
||||
|
10
gdb/remote.c
10
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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user