diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:37:19 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:06 -0700 |
commit | 7d178d6aa5a0f88080be7a0b7ebc03fc8b6262fc (patch) | |
tree | 8b6c8f5a1e3c14d47022fd8a6d2aa5545a4f40f6 /gdb/remote.c | |
parent | 86ce266821fee1fd9af0f00862857b25f9caf4e6 (diff) | |
download | gdb-7d178d6aa5a0f88080be7a0b7ebc03fc8b6262fc.zip gdb-7d178d6aa5a0f88080be7a0b7ebc03fc8b6262fc.tar.gz gdb-7d178d6aa5a0f88080be7a0b7ebc03fc8b6262fc.tar.bz2 |
Add target_ops argument to to_supports_enable_disable_tracepoint
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops)
<to_supports_enable_disable_tracepoint>: Add argument.
(target_supports_enable_disable_tracepoint): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_supports_enable_disable_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 72e4771..77a5166 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -10290,7 +10290,7 @@ remote_supports_install_in_trace (void) } static int -remote_supports_enable_disable_tracepoint (void) +remote_supports_enable_disable_tracepoint (struct target_ops *self) { struct remote_state *rs = get_remote_state (); |