diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:44:57 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:39 -0700 |
commit | a893e81f187e3ffd69a90bd8181571628f74794e (patch) | |
tree | b142601542b1771b72d596f3aba0f3fcadbf307f /gdb/ctf.c | |
parent | c686c57f020c9b20ea120ec19cacce773ae789de (diff) | |
download | gdb-a893e81f187e3ffd69a90bd8181571628f74794e.zip gdb-a893e81f187e3ffd69a90bd8181571628f74794e.tar.gz gdb-a893e81f187e3ffd69a90bd8181571628f74794e.tar.bz2 |
Add target_ops argument to to_traceframe_info
2014-02-19 Tom Tromey <tromey@redhat.com>
* tracepoint.c (tfile_traceframe_info): Add 'self' argument.
* target.h (struct target_ops) <to_traceframe_info>: Add argument.
(target_traceframe_info): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_traceframe_info): Add 'self' argument.
* ctf.c (ctf_traceframe_info): Add 'self' argument.
Diffstat (limited to 'gdb/ctf.c')
-rw-r--r-- | gdb/ctf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1768,7 +1768,7 @@ ctf_thread_alive (struct target_ops *ops, ptid_t ptid) traceframe_info. */ static struct traceframe_info * -ctf_traceframe_info (void) +ctf_traceframe_info (struct target_ops *self) { struct traceframe_info *info = XCNEW (struct traceframe_info); const char *name; |