diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:41:15 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:22 -0700 |
commit | 8bd200f160af128f9e963490de816b6c98af2d1a (patch) | |
tree | e2a38004958157bb76521477d1c525517f673dc3 /gdb/ctf.c | |
parent | e2d1aae3726343725f2381a7fdca8647b6086584 (diff) | |
download | binutils-gdb-8bd200f160af128f9e963490de816b6c98af2d1a.tar.gz |
Add target_ops argument to to_get_trace_status
2014-02-19 Tom Tromey <tromey@redhat.com>
* tracepoint.c (tfile_get_trace_status): Add 'self' argument.
* target.h (struct target_ops) <to_get_trace_status>: Add
argument.
(target_get_trace_status): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_get_trace_status): Add 'self' argument.
(remote_start_remote, remote_can_download_tracepoint): Update.
* ctf.c (ctf_get_trace_status): Add 'self' argument.
Diffstat (limited to 'gdb/ctf.c')
-rw-r--r-- | gdb/ctf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ctf.c b/gdb/ctf.c index 38c8abb7812..b31c987efb2 100644 --- a/gdb/ctf.c +++ b/gdb/ctf.c @@ -1837,7 +1837,7 @@ ctf_traceframe_info (void) The trace status for a file is that tracing can never be run. */ static int -ctf_get_trace_status (struct trace_status *ts) +ctf_get_trace_status (struct target_ops *self, struct trace_status *ts) { /* Other bits of trace status were collected as part of opening the trace files, so nothing to do here. */ |