diff options
author | Tom Tromey <tom@tromey.com> | 2020-09-19 11:54:49 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-09-19 11:54:52 -0600 |
commit | b35c1d1cf457db034186f321517eee69ef8457a5 (patch) | |
tree | 05dcbbd0e7f32f986369aad09b59bb770189f124 /gdb/osabi.c | |
parent | 5bb6e9dd7090cacb02bbe9f20d8b101a59a3bf99 (diff) | |
download | gdb-b35c1d1cf457db034186f321517eee69ef8457a5.zip gdb-b35c1d1cf457db034186f321517eee69ef8457a5.tar.gz gdb-b35c1d1cf457db034186f321517eee69ef8457a5.tar.bz2 |
Use gdb_bfd_sections in ELF osabi tag sniffing
This changes some ELF osabi tag-sniffing functions to avoid
bfd_map_over_sections, in favor of iteration. I could only readily
test the generic one.
gdb/ChangeLog
2020-09-19 Tom Tromey <tom@tromey.com>
* osabi.h (generic_elf_osabi_sniff_abi_tag_sections): Update.
* osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Change
parameters.
(generic_elf_osabi_sniffer): Use foreach.
* mips-sde-tdep.c (mips_sde_elf_osabi_sniffer): Use foreach.
* arm-tdep.c (arm_elf_osabi_sniffer): Use foreach.
Diffstat (limited to 'gdb/osabi.c')
-rw-r--r-- | gdb/osabi.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/osabi.c b/gdb/osabi.c index 627b9d9..e8a813b 100644 --- a/gdb/osabi.c +++ b/gdb/osabi.c @@ -23,6 +23,7 @@ #include "arch-utils.h" #include "gdbcmd.h" #include "command.h" +#include "gdb_bfd.h" #include "elf-bfd.h" @@ -439,9 +440,9 @@ check_note (bfd *abfd, asection *sect, char *note, unsigned int *sectsize, /* Generic sniffer for ELF flavoured files. */ void -generic_elf_osabi_sniff_abi_tag_sections (bfd *abfd, asection *sect, void *obj) +generic_elf_osabi_sniff_abi_tag_sections (bfd *abfd, asection *sect, + enum gdb_osabi *osabi) { - enum gdb_osabi *osabi = (enum gdb_osabi *) obj; const char *name; unsigned int sectsize; char *note; @@ -561,9 +562,8 @@ generic_elf_osabi_sniffer (bfd *abfd) /* And likewise ELFOSABI_HPUX. For some reason the default value for the EI_OSABI field is ELFOSABI_HPUX for all PA-RISC targets (with the exception of GNU/Linux). */ - bfd_map_over_sections (abfd, - generic_elf_osabi_sniff_abi_tag_sections, - &osabi); + for (asection *sect : gdb_bfd_sections (abfd)) + generic_elf_osabi_sniff_abi_tag_sections (abfd, sect, &osabi); break; case ELFOSABI_FREEBSD: |