mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
Remove unneeded tests for definitions of NT_BSDNETCORE values.
binutils* readelf.c (get_netbsd_elfcore_note_type): Remove unneeded #ifdef checks for NT_NETBSDCORE_AUXV and NT_NETBSDCORE_LWPSTATUS. bfd * elf.c (elfcore_grok_netbsd_note): Remove unneeded #ifdef checks for NT_NETBSDCORE_AUXV and NT_NETBSDCORE_LWPSTATUS.
This commit is contained in:
parent
8985b74b7d
commit
5f47741bf6
@ -1,3 +1,8 @@
|
||||
2021-04-14 Frederic Cambus <fred@statdns.com>
|
||||
|
||||
* elf.c (elfcore_grok_netbsd_note): Remove unneeded #ifdef
|
||||
checks for NT_NETBSDCORE_AUXV and NT_NETBSDCORE_LWPSTATUS.
|
||||
|
||||
2021-04-14 Alan Modra <amodra@gmail.com>
|
||||
|
||||
PR 27631
|
||||
|
@ -10945,17 +10945,13 @@ elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
|
||||
since the kernel writes this note out first when it
|
||||
creates a core file. */
|
||||
return elfcore_grok_netbsd_procinfo (abfd, note);
|
||||
#ifdef NT_NETBSDCORE_AUXV
|
||||
case NT_NETBSDCORE_AUXV:
|
||||
/* NetBSD-specific Elf Auxiliary Vector data. */
|
||||
return elfcore_make_auxv_note_section (abfd, note, 4);
|
||||
#endif
|
||||
#ifdef NT_NETBSDCORE_LWPSTATUS
|
||||
case NT_NETBSDCORE_LWPSTATUS:
|
||||
return elfcore_make_note_pseudosection (abfd,
|
||||
".note.netbsdcore.lwpstatus",
|
||||
note);
|
||||
#endif
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -1,3 +1,8 @@
|
||||
2021-04-14 Frederic Cambus <fred@statdns.com>
|
||||
|
||||
* readelf.c (get_netbsd_elfcore_note_type): Remove unneeded #ifdef
|
||||
checks for NT_NETBSDCORE_AUXV and NT_NETBSDCORE_LWPSTATUS.
|
||||
|
||||
2021-04-14 Alan Modra <amodra@gmail.com>
|
||||
|
||||
PR 27716
|
||||
|
@ -19583,15 +19583,11 @@ get_netbsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
|
||||
/* NetBSD core "procinfo" structure. */
|
||||
return _("NetBSD procinfo structure");
|
||||
|
||||
#ifdef NT_NETBSDCORE_AUXV
|
||||
case NT_NETBSDCORE_AUXV:
|
||||
return _("NetBSD ELF auxiliary vector data");
|
||||
#endif
|
||||
|
||||
#ifdef NT_NETBSDCORE_LWPSTATUS
|
||||
case NT_NETBSDCORE_LWPSTATUS:
|
||||
return _("PT_LWPSTATUS (ptrace_lwpstatus structure)");
|
||||
#endif
|
||||
|
||||
default:
|
||||
/* As of Jan 2020 there are no other machine-independent notes
|
||||
|
Loading…
Reference in New Issue
Block a user