aboutsummaryrefslogtreecommitdiff
path: root/gdb/target-delegates.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 10:57:18 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:47:32 -0700
commit16f796b16a0a7c16c8c11800136b99e53984f4c2 (patch)
treea3f1dcb6c1e16a643acad5c20952e11a052efdf6 /gdb/target-delegates.c
parent0b5a271985687f3cfaf22a301e5ad4600df1302b (diff)
downloadgdb-16f796b16a0a7c16c8c11800136b99e53984f4c2.zip
gdb-16f796b16a0a7c16c8c11800136b99e53984f4c2.tar.gz
gdb-16f796b16a0a7c16c8c11800136b99e53984f4c2.tar.bz2
convert to_make_corefile_notes
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (update_current_target): Don't inherit or default to_make_corefile_notes. (init_dummy_target): Don't initialize to_make_corefile_notes. * target.h (struct target_ops) <to_make_corefile_notes>: Use TARGET_DEFAULT_FUNC.
Diffstat (limited to 'gdb/target-delegates.c')
-rw-r--r--gdb/target-delegates.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c
index 301b07a..33bb329 100644
--- a/gdb/target-delegates.c
+++ b/gdb/target-delegates.c
@@ -518,6 +518,13 @@ delegate_find_memory_regions (struct target_ops *self, find_memory_region_ftype
return self->to_find_memory_regions (self, arg1, arg2);
}
+static char *
+delegate_make_corefile_notes (struct target_ops *self, bfd *arg1, int *arg2)
+{
+ self = self->beneath;
+ return self->to_make_corefile_notes (self, arg1, arg2);
+}
+
static enum target_xfer_status
delegate_xfer_partial (struct target_ops *self, enum target_object arg1, const char *arg2, gdb_byte *arg3, const gdb_byte *arg4, ULONGEST arg5, ULONGEST arg6, ULONGEST *arg7)
{
@@ -637,6 +644,8 @@ install_delegators (struct target_ops *ops)
ops->to_async = delegate_async;
if (ops->to_find_memory_regions == NULL)
ops->to_find_memory_regions = delegate_find_memory_regions;
+ if (ops->to_make_corefile_notes == NULL)
+ ops->to_make_corefile_notes = delegate_make_corefile_notes;
if (ops->to_xfer_partial == NULL)
ops->to_xfer_partial = delegate_xfer_partial;
if (ops->to_supports_btrace == NULL)
@@ -691,6 +700,7 @@ install_dummy_methods (struct target_ops *ops)
ops->to_is_async_p = find_default_is_async_p;
ops->to_async = tdefault_async;
ops->to_find_memory_regions = dummy_find_memory_regions;
+ ops->to_make_corefile_notes = dummy_make_corefile_notes;
ops->to_xfer_partial = tdefault_xfer_partial;
ops->to_supports_btrace = tdefault_supports_btrace;
}