summaryrefslogtreecommitdiff
path: root/gdb/record.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-17 21:46:25 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:46:46 -0700
commitc6cd7c02d1b67aafe4c791e2828c58733c68c03d (patch)
tree0b0f1d719c540da35cb561429af1613921243b6b /gdb/record.c
parent39c49f83b643618704b1a89e0b14680090a17f97 (diff)
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.c')
-rw-r--r--gdb/record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/record.c b/gdb/record.c
index 41e167fc2a..d8e1098fd7 100644
--- a/gdb/record.c
+++ b/gdb/record.c
@@ -115,7 +115,7 @@ record_stop (struct target_ops *t)
DEBUG ("stop %s", t->to_shortname);
if (t->to_stop_recording != NULL)
- t->to_stop_recording ();
+ t->to_stop_recording (t);
}
/* Unpush the record target. */