diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:41:52 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:25 -0700 |
commit | bd4c67938f9885f36df3d5d9635aba4e8870b95d (patch) | |
tree | 4a1a9c5202f576c249631c06172a7a9468b7d1aa /gdb/ctf.c | |
parent | 74499f1bf25edf94415bb692a7cf71b719897738 (diff) | |
download | binutils-gdb-bd4c67938f9885f36df3d5d9635aba4e8870b95d.tar.gz |
Add target_ops argument to to_trace_find
2014-02-19 Tom Tromey <tromey@redhat.com>
* tracepoint.c (tfile_trace_find): Add 'self' argument.
* target.h (struct target_ops) <to_trace_find>: Add argument.
(target_trace_find): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_trace_find): Add 'self' argument.
* ctf.c (ctf_trace_find): 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 b31c987efb2..b2b0e865ec4 100644 --- a/gdb/ctf.c +++ b/gdb/ctf.c @@ -1633,7 +1633,7 @@ ctf_get_traceframe_address (void) number in it. Return traceframe number when matched. */ static int -ctf_trace_find (enum trace_find_type type, int num, +ctf_trace_find (struct target_ops *self, enum trace_find_type type, int num, CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) { int ret = -1; |