diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:40:13 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:18 -0700 |
commit | 559d2b81f07720cc7d28ae0c496448c7905db049 (patch) | |
tree | 8e97a001ef34cd8a753588dca854389ec753df4e /gdb/remote.c | |
parent | a52a8357cfeebe84e18276371ec29c8dd563adbf (diff) | |
download | gdb-559d2b81f07720cc7d28ae0c496448c7905db049.zip gdb-559d2b81f07720cc7d28ae0c496448c7905db049.tar.gz gdb-559d2b81f07720cc7d28ae0c496448c7905db049.tar.bz2 |
Add target_ops argument to to_download_trace_state_variable
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_download_trace_state_variable>:
Add argument.
(target_download_trace_state_variable): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_download_trace_state_variable): Add 'self'
argument.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index e91eea3..8586bbc 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -10602,7 +10602,8 @@ remote_can_download_tracepoint (struct target_ops *self) static void -remote_download_trace_state_variable (struct trace_state_variable *tsv) +remote_download_trace_state_variable (struct target_ops *self, + struct trace_state_variable *tsv) { struct remote_state *rs = get_remote_state (); char *p; |