diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:46:25 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:46 -0700 |
commit | c6cd7c02d1b67aafe4c791e2828c58733c68c03d (patch) | |
tree | 0b0f1d719c540da35cb561429af1613921243b6b /gdb/record-btrace.c | |
parent | 39c49f83b643618704b1a89e0b14680090a17f97 (diff) | |
download | binutils-gdb-c6cd7c02d1b67aafe4c791e2828c58733c68c03d.tar.gz |
Add target_ops argument to to_stop_recording
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_stop_recording>: Add argument.
* target.c (target_stop_recording): Add argument.
* record.c (record_stop): Add argument.
* record-btrace.c (record_btrace_stop_recording): Add 'self'
argument.
Diffstat (limited to 'gdb/record-btrace.c')
-rw-r--r-- | gdb/record-btrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c index 4e808e47151..b34b737e30d 100644 --- a/gdb/record-btrace.c +++ b/gdb/record-btrace.c @@ -195,7 +195,7 @@ record_btrace_open (char *args, int from_tty) /* The to_stop_recording method of target record-btrace. */ static void -record_btrace_stop_recording (void) +record_btrace_stop_recording (struct target_ops *self) { struct thread_info *tp; |