This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[RFC 2/5] Add NT_GNU_INFINITY
- From: Gary Benson <gbenson at redhat dot com>
- To: gdb-patches at sourceware dot org
- Cc: infinity at sourceware dot org
- Date: Thu, 8 Jun 2017 10:15:35 +0100
- Subject: [RFC 2/5] Add NT_GNU_INFINITY
- Authentication-results: sourceware.org; auth=none
- Authentication-results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com
- Authentication-results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=gbenson at redhat dot com
- Dkim-filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 4766F334581
- Dmarc-filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 4766F334581
- References: <1496913338-22195-1-git-send-email-gbenson@redhat.com>
This commit defines NT_GNU_INFINITY, the ELF note type used for
Infinity notes. Note that the current value is not final.
include/ChangeLog:
* elf/common.h: Add NT_GNU_INFINITY.
---
include/ChangeLog | 4 ++++
include/elf/common.h | 1 +
2 files changed, 5 insertions(+)
diff --git a/include/elf/common.h b/include/elf/common.h
index 484cb48..fee6d1a 100644
--- a/include/elf/common.h
+++ b/include/elf/common.h
@@ -673,6 +673,7 @@
#define NT_GNU_BUILD_ID 3 /* Generated by ld --build-id. */
#define NT_GNU_GOLD_VERSION 4 /* Generated by gold. */
#define NT_GNU_PROPERTY_TYPE_0 5 /* Generated by gcc. */
+#define NT_GNU_INFINITY 8995 /* Generated by i8c. */
#define NT_GNU_BUILD_ATTRIBUTE_OPEN 0x100
#define NT_GNU_BUILD_ATTRIBUTE_FUNC 0x101
--
1.8.3.1