convert to_call_history_from
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (target_call_history_from): Unconditionally delegate. * target.h (struct target_ops) <to_call_history_from>: Use TARGET_DEFAULT_NORETURN.
This commit is contained in:
parent
115d9817bb
commit
16fc27d65a
4 changed files with 26 additions and 11 deletions
11
gdb/target.c
11
gdb/target.c
|
@ -4080,16 +4080,7 @@ target_call_history (int size, int flags)
|
|||
void
|
||||
target_call_history_from (ULONGEST begin, int size, int flags)
|
||||
{
|
||||
struct target_ops *t;
|
||||
|
||||
for (t = current_target.beneath; t != NULL; t = t->beneath)
|
||||
if (t->to_call_history_from != NULL)
|
||||
{
|
||||
t->to_call_history_from (t, begin, size, flags);
|
||||
return;
|
||||
}
|
||||
|
||||
tcomplain ();
|
||||
current_target.to_call_history_from (¤t_target, begin, size, flags);
|
||||
}
|
||||
|
||||
/* See target.h. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue