diff options
author | Aaron Merey <amerey@redhat.com> | 2021-11-09 16:47:36 -0500 |
---|---|---|
committer | Aaron Merey <amerey@redhat.com> | 2021-11-16 22:29:51 -0500 |
commit | aa95b2d43883666937d31335d0178d2218d9c9aa (patch) | |
tree | eb9f3dc97b6f5e108184897a02221b226978f1b3 /gdb/gdbarch.c | |
parent | c2aad00a7447a32e1f4b0bd558a1bd2b13085381 (diff) | |
download | gdb-aa95b2d43883666937d31335d0178d2218d9c9aa.zip gdb-aa95b2d43883666937d31335d0178d2218d9c9aa.tar.gz gdb-aa95b2d43883666937d31335d0178d2218d9c9aa.tar.bz2 |
gdb: Add aliases for read_core_file_mappings callbacks
Add aliases read_core_file_mappings_loop_ftype and
read_core_file_mappings_pre_loop_ftype. Intended for use with
read_core_file_mappings.
Also add build_id parameter to read_core_file_mappings_loop_ftype.
Diffstat (limited to 'gdb/gdbarch.c')
-rw-r--r-- | gdb/gdbarch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index f89dcc5..689187f 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -5411,7 +5411,7 @@ set_gdbarch_get_pc_address_flags (struct gdbarch *gdbarch, } void -gdbarch_read_core_file_mappings (struct gdbarch *gdbarch, struct bfd *cbfd, gdb::function_view<void (ULONGEST count)> pre_loop_cb, gdb::function_view<void (int num, ULONGEST start, ULONGEST end, ULONGEST file_ofs, const char *filename)> loop_cb) +gdbarch_read_core_file_mappings (struct gdbarch *gdbarch, struct bfd *cbfd, read_core_file_mappings_pre_loop_ftype pre_loop_cb, read_core_file_mappings_loop_ftype loop_cb) { gdb_assert (gdbarch != NULL); gdb_assert (gdbarch->read_core_file_mappings != NULL); |