From 6b53df5729b7a7f628d6ae36f70945195cd2ee4f Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 1 Nov 2012 14:57:22 +0000 Subject: [PATCH] binutils * readelf.c (get_note_type): Handle NT_386_TLS, NT_386_IOPERM. include/common/elf * common.h (NT_386_TLS, NT_386_IOPERM): New defines. --- include/elf/ChangeLog | 4 ++++ include/elf/common.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index ef17f374b..f03cd737a 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,7 @@ +2012-11-01 Tom Tromey + + * common.h (NT_386_TLS, NT_386_IOPERM): New defines. + 2012-10-30 Steve McIntyre * elf/arm.h (EF_ARM_ABI_FLOAT_SOFT): New define. diff --git a/include/elf/common.h b/include/elf/common.h index be228cdc1..244e27fde 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -529,6 +529,10 @@ /* note name must be "LINUX". */ #define NT_PPC_VSX 0x102 /* PowerPC VSX registers */ /* note name must be "LINUX". */ +#define NT_386_TLS 0x200 /* x86 TLS information */ + /* note name must be "LINUX". */ +#define NT_386_IOPERM 0x201 /* x86 io permissions */ + /* note name must be "LINUX". */ #define NT_X86_XSTATE 0x202 /* x86 XSAVE extended state */ /* note name must be "LINUX". */ #define NT_S390_HIGH_GPRS 0x300 /* S/390 upper halves of GPRs */