[v3,2/6] Add a psuedosection for the NT_FREEBSD_THRMISC note.

Message ID 1453084047-16175-3-git-send-email-jhb@FreeBSD.org
State New, archived
Headers

Commit Message

John Baldwin Jan. 18, 2016, 2:27 a.m. UTC
  bfd/ChangeLog:

	* elf.c (elfcore_grok_note): Recognize NT_FREEBSD_THRMISC notes.
---
 bfd/ChangeLog | 4 ++++
 bfd/elf.c     | 7 +++++++
 2 files changed, 11 insertions(+)
  

Comments

Pedro Alves Jan. 18, 2016, 12:38 p.m. UTC | #1
BTW, typo in subject: s/psuedo/pseudo/

Thanks,
Pedro Alves
  
John Baldwin Jan. 18, 2016, 4:43 p.m. UTC | #2
On Monday, January 18, 2016 12:38:18 PM Pedro Alves wrote:
> BTW, typo in subject: s/psuedo/pseudo/

Doh, thanks.
  

Patch

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index b6a7c5f..d157d3e 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@ 
+2016-01-16  John Baldwin  <jhb@FreeBSD.org>
+
+	* elf.c (elfcore_grok_note): Recognize NT_FREEBSD_THRMISC notes.
+
 2016-01-12  Yury Usishchev  <y.usishchev@samsung.com>
 
 	* elf32-arm.c (elf32_arm_fix_exidx_coverage): Insert cantunwind
diff --git a/bfd/elf.c b/bfd/elf.c
index a1f857a..b2a50bf 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -9287,6 +9287,13 @@  elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
     case NT_SIGINFO:
       return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
 					      note);
+
+    case NT_FREEBSD_THRMISC:
+      if (note->namesz == 8
+	  && strcmp (note->namedata, "FreeBSD") == 0)
+	return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
+      else
+	return TRUE;
     }
 }