convert to_get_trace_state_variable_value

2014-02-19  Tom Tromey  <tromey@redhat.com>

	* target-delegates.c: Rebuild.
	* target.c (update_current_target): Don't inherit or default
	to_get_trace_state_variable_value.
	* target.h (struct target_ops)
	<to_get_trace_state_variable_value>: Use TARGET_DEFAULT_RETURN.
This commit is contained in:
Tom Tromey
2013-12-18 14:09:04 -07:00
parent afc94e66d4
commit 959bcd0b39
4 changed files with 27 additions and 5 deletions

View File

@ -793,6 +793,19 @@ tdefault_trace_find (struct target_ops *self, enum trace_find_type arg1, int ar
return -1;
}
static int
delegate_get_trace_state_variable_value (struct target_ops *self, int arg1, LONGEST *arg2)
{
self = self->beneath;
return self->to_get_trace_state_variable_value (self, arg1, arg2);
}
static int
tdefault_get_trace_state_variable_value (struct target_ops *self, int arg1, LONGEST *arg2)
{
return 0;
}
static int
delegate_supports_btrace (struct target_ops *self)
{
@ -945,6 +958,8 @@ install_delegators (struct target_ops *ops)
ops->to_trace_stop = delegate_trace_stop;
if (ops->to_trace_find == NULL)
ops->to_trace_find = delegate_trace_find;
if (ops->to_get_trace_state_variable_value == NULL)
ops->to_get_trace_state_variable_value = delegate_get_trace_state_variable_value;
if (ops->to_supports_btrace == NULL)
ops->to_supports_btrace = delegate_supports_btrace;
}
@ -1020,5 +1035,6 @@ install_dummy_methods (struct target_ops *ops)
ops->to_get_tracepoint_status = tdefault_get_tracepoint_status;
ops->to_trace_stop = tdefault_trace_stop;
ops->to_trace_find = tdefault_trace_find;
ops->to_get_trace_state_variable_value = tdefault_get_trace_state_variable_value;
ops->to_supports_btrace = tdefault_supports_btrace;
}