diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:44:32 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:37 -0700 |
commit | 61fc905df366744e1501cccd7ba030f50e6c7850 (patch) | |
tree | cdf8d7940c9070eb1779f5c85ce0af74481f0cfd /gdb/remote.c | |
parent | c378d69dffc04b96a99e08f8df7a117ac0e57dbf (diff) | |
download | gdb-61fc905df366744e1501cccd7ba030f50e6c7850.zip gdb-61fc905df366744e1501cccd7ba030f50e6c7850.tar.gz gdb-61fc905df366744e1501cccd7ba030f50e6c7850.tar.bz2 |
Add target_ops argument to to_static_tracepoint_marker_at
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_static_tracepoint_marker_at>:
Add argument.
(target_static_tracepoint_marker_at): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_static_tracepoint_marker_at): 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 7a62fdc..2adf0db 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -2892,7 +2892,7 @@ remote_threads_extra_info (struct target_ops *self, struct thread_info *tp) static int -remote_static_tracepoint_marker_at (CORE_ADDR addr, +remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr, struct static_tracepoint_marker *marker) { struct remote_state *rs = get_remote_state (); |