Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Dec 2015 21:16:01 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291909 - head/sys/sys
Message-ID:  <201512062116.tB6LG1Cc058770@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Sun Dec  6 21:16:01 2015
New Revision: 291909
URL: https://svnweb.freebsd.org/changeset/base/291909

Log:
  Add definitions for ELF note types used in executables
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/sys/elf_common.h

Modified: head/sys/sys/elf_common.h
==============================================================================
--- head/sys/sys/elf_common.h	Sun Dec  6 21:07:33 2015	(r291908)
+++ head/sys/sys/elf_common.h	Sun Dec  6 21:16:01 2015	(r291909)
@@ -727,6 +727,11 @@ typedef struct {
 #define	LL_DELAY_LOAD		0x10
 #define	LL_DELTA		0x20
 
+/* Values for n_type used in executables. */
+#define	NT_FREEBSD_ABI_TAG	1
+#define	NT_FREEBSD_NOINIT_TAG	2
+#define	NT_FREEBSD_ARCH_TAG	3
+
 /* Values for n_type.  Used in core files. */
 #define	NT_PRSTATUS	1	/* Process status. */
 #define	NT_FPREGSET	2	/* Floating point registers. */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512062116.tB6LG1Cc058770>