diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1254e7e01d..8e91b1d4e7 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2017-07-07 John Baldwin + + * elf.c (elfcore_grok_freebsd_note): Handle NT_FREEBSD_PTLWPINFO. + 2017-07-07 Alan Modra * coffcode.h (coff_slurp_symbol_table): Handle C_AIX_WEAKEXT. diff --git a/bfd/elf.c b/bfd/elf.c index 063a6e4bb3..dcb06383d9 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -9980,6 +9980,10 @@ elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note) else return TRUE; + case NT_FREEBSD_PTLWPINFO: + return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo", + note); + default: return TRUE; }