mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 14:30:48 +00:00
convert to_disable_btrace
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (target_disable_btrace): Unconditionally delegate. * target.h (struct target_ops) <to_disable_btrace>: Use TARGET_DEFAULT_NORETURN.
This commit is contained in:
parent
58a5184e2a
commit
8dc292d321
@ -1,3 +1,10 @@
|
||||
2014-02-19 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* target-delegates.c: Rebuild.
|
||||
* target.c (target_disable_btrace): Unconditionally delegate.
|
||||
* target.h (struct target_ops) <to_disable_btrace>: Use
|
||||
TARGET_DEFAULT_NORETURN.
|
||||
|
||||
2014-02-19 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* target-delegates.c: Rebuild.
|
||||
|
@ -1300,6 +1300,19 @@ tdefault_supports_btrace (struct target_ops *self)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
delegate_disable_btrace (struct target_ops *self, struct btrace_target_info *arg1)
|
||||
{
|
||||
self = self->beneath;
|
||||
self->to_disable_btrace (self, arg1);
|
||||
}
|
||||
|
||||
static void
|
||||
tdefault_disable_btrace (struct target_ops *self, struct btrace_target_info *arg1)
|
||||
{
|
||||
tcomplain ();
|
||||
}
|
||||
|
||||
static void
|
||||
delegate_save_record (struct target_ops *self, const char *arg1)
|
||||
{
|
||||
@ -1692,6 +1705,8 @@ install_delegators (struct target_ops *ops)
|
||||
ops->to_can_use_agent = delegate_can_use_agent;
|
||||
if (ops->to_supports_btrace == NULL)
|
||||
ops->to_supports_btrace = delegate_supports_btrace;
|
||||
if (ops->to_disable_btrace == NULL)
|
||||
ops->to_disable_btrace = delegate_disable_btrace;
|
||||
if (ops->to_save_record == NULL)
|
||||
ops->to_save_record = delegate_save_record;
|
||||
if (ops->to_delete_record == NULL)
|
||||
@ -1833,6 +1848,7 @@ install_dummy_methods (struct target_ops *ops)
|
||||
ops->to_use_agent = tdefault_use_agent;
|
||||
ops->to_can_use_agent = tdefault_can_use_agent;
|
||||
ops->to_supports_btrace = tdefault_supports_btrace;
|
||||
ops->to_disable_btrace = tdefault_disable_btrace;
|
||||
ops->to_save_record = tdefault_save_record;
|
||||
ops->to_delete_record = tdefault_delete_record;
|
||||
ops->to_record_is_replaying = tdefault_record_is_replaying;
|
||||
|
11
gdb/target.c
11
gdb/target.c
@ -3799,16 +3799,7 @@ target_enable_btrace (ptid_t ptid)
|
||||
void
|
||||
target_disable_btrace (struct btrace_target_info *btinfo)
|
||||
{
|
||||
struct target_ops *t;
|
||||
|
||||
for (t = current_target.beneath; t != NULL; t = t->beneath)
|
||||
if (t->to_disable_btrace != NULL)
|
||||
{
|
||||
t->to_disable_btrace (t, btinfo);
|
||||
return;
|
||||
}
|
||||
|
||||
tcomplain ();
|
||||
current_target.to_disable_btrace (¤t_target, btinfo);
|
||||
}
|
||||
|
||||
/* See target.h. */
|
||||
|
@ -1005,7 +1005,8 @@ struct target_ops
|
||||
|
||||
/* Disable branch tracing and deallocate TINFO. */
|
||||
void (*to_disable_btrace) (struct target_ops *,
|
||||
struct btrace_target_info *tinfo);
|
||||
struct btrace_target_info *tinfo)
|
||||
TARGET_DEFAULT_NORETURN (tcomplain ());
|
||||
|
||||
/* Disable branch tracing and deallocate TINFO. This function is similar
|
||||
to to_disable_btrace, except that it is called during teardown and is
|
||||
|
Loading…
Reference in New Issue
Block a user