svn commit: r283553 - stable/10/sys/sys
Ed Maste
emaste at FreeBSD.org
Tue May 26 02:50:31 UTC 2015
Author: emaste
Date: Tue May 26 02:50:30 2015
New Revision: 283553
URL: https://svnweb.freebsd.org/changeset/base/283553
Log:
MFC r283110: Add GRP_COMDAT section group flag to ELF header
Sponsored by: The FreeBSD Foundation
Modified:
stable/10/sys/sys/elf_common.h
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/sys/elf_common.h
==============================================================================
--- stable/10/sys/sys/elf_common.h Tue May 26 02:18:10 2015 (r283552)
+++ stable/10/sys/sys/elf_common.h Tue May 26 02:50:30 2015 (r283553)
@@ -329,6 +329,9 @@ typedef struct {
#define SHF_MASKOS 0x0ff00000 /* OS-specific semantics. */
#define SHF_MASKPROC 0xf0000000 /* Processor-specific semantics. */
+/* Flags for section groups. */
+#define GRP_COMDAT 0x1 /* COMDAT semantics. */
+
/* Values for p_type. */
#define PT_NULL 0 /* Unused entry. */
#define PT_LOAD 1 /* Loadable segment. */
More information about the svn-src-stable-10
mailing list