mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 05:12:28 +08:00
convert to_verify_memory
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (target_verify_memory): Unconditionally delegate. * target.h (struct target_ops) <to_verify_memory>: Use TARGET_DEFAULT_NORETURN.
This commit is contained in:
@ -1144,6 +1144,19 @@ tdefault_core_of_thread (struct target_ops *self, ptid_t arg1)
|
||||
return -1;
|
||||
}
|
||||
|
||||
static int
|
||||
delegate_verify_memory (struct target_ops *self, const gdb_byte *arg1, CORE_ADDR arg2, ULONGEST arg3)
|
||||
{
|
||||
self = self->beneath;
|
||||
return self->to_verify_memory (self, arg1, arg2, arg3);
|
||||
}
|
||||
|
||||
static int
|
||||
tdefault_verify_memory (struct target_ops *self, const gdb_byte *arg1, CORE_ADDR arg2, ULONGEST arg3)
|
||||
{
|
||||
tcomplain ();
|
||||
}
|
||||
|
||||
static int
|
||||
delegate_get_tib_address (struct target_ops *self, ptid_t arg1, CORE_ADDR *arg2)
|
||||
{
|
||||
@ -1457,6 +1470,8 @@ install_delegators (struct target_ops *ops)
|
||||
ops->to_set_trace_notes = delegate_set_trace_notes;
|
||||
if (ops->to_core_of_thread == NULL)
|
||||
ops->to_core_of_thread = delegate_core_of_thread;
|
||||
if (ops->to_verify_memory == NULL)
|
||||
ops->to_verify_memory = delegate_verify_memory;
|
||||
if (ops->to_get_tib_address == NULL)
|
||||
ops->to_get_tib_address = delegate_get_tib_address;
|
||||
if (ops->to_set_permissions == NULL)
|
||||
@ -1577,6 +1592,7 @@ install_dummy_methods (struct target_ops *ops)
|
||||
ops->to_set_trace_buffer_size = tdefault_set_trace_buffer_size;
|
||||
ops->to_set_trace_notes = tdefault_set_trace_notes;
|
||||
ops->to_core_of_thread = tdefault_core_of_thread;
|
||||
ops->to_verify_memory = tdefault_verify_memory;
|
||||
ops->to_get_tib_address = tdefault_get_tib_address;
|
||||
ops->to_set_permissions = tdefault_set_permissions;
|
||||
ops->to_static_tracepoint_marker_at = tdefault_static_tracepoint_marker_at;
|
||||
|
Reference in New Issue
Block a user