mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +08:00
Add target_ops argument to to_call_history_range
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_call_history_range>: Add argument. * target.c (target_call_history_range): Add argument. * record-btrace.c (record_btrace_call_history_range): Add 'self' argument. (record_btrace_call_history_from): Update.
This commit is contained in:
@ -4498,7 +4498,7 @@ target_call_history_range (ULONGEST begin, ULONGEST end, int flags)
|
||||
for (t = current_target.beneath; t != NULL; t = t->beneath)
|
||||
if (t->to_call_history_range != NULL)
|
||||
{
|
||||
t->to_call_history_range (begin, end, flags);
|
||||
t->to_call_history_range (t, begin, end, flags);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user