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