diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:39:49 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:16 -0700 |
commit | 548f7808ad0fe07cc80dbacbf86f61bbfaa3fc73 (patch) | |
tree | e9fb1627fb454c79b4bd4d23a15818421741b98d /gdb/remote.c | |
parent | ecae04e1df45d8ea47f700fde6cb1782c143f5d1 (diff) | |
download | binutils-548f7808ad0fe07cc80dbacbf86f61bbfaa3fc73.zip binutils-548f7808ad0fe07cc80dbacbf86f61bbfaa3fc73.tar.gz binutils-548f7808ad0fe07cc80dbacbf86f61bbfaa3fc73.tar.bz2 |
Add target_ops argument to to_download_tracepoint
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_download_tracepoint>: Add
argument.
(target_download_tracepoint): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_download_tracepoint): Add 'self' argument.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 0e12567..7a8fa1b 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -10397,7 +10397,7 @@ remote_download_command_source (int num, ULONGEST addr, } static void -remote_download_tracepoint (struct bp_location *loc) +remote_download_tracepoint (struct target_ops *self, struct bp_location *loc) { #define BUF_SIZE 2048 |