From 7204f4791605e3df6cbad92832047fe45b777705 Mon Sep 17 00:00:00 2001 From: Jeroen Ruigrok/asmodai Date: Wed, 13 Jul 2005 19:11:52 +0000 Subject: [PATCH] Add section group flags (GRP_*). --- sys/sys/elf_common.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys/sys/elf_common.h b/sys/sys/elf_common.h index 3fd373772d..89d4f631d1 100644 --- a/sys/sys/elf_common.h +++ b/sys/sys/elf_common.h @@ -24,7 +24,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/sys/sys/elf_common.h,v 1.5.2.3 2001/02/28 02:30:46 obrien Exp $ - * $DragonFly: src/sys/sys/elf_common.h,v 1.15 2005/07/13 19:07:05 asmodai Exp $ + * $DragonFly: src/sys/sys/elf_common.h,v 1.16 2005/07/13 19:11:52 asmodai Exp $ */ #ifndef _SYS_ELF_COMMON_H_ @@ -275,6 +275,11 @@ typedef struct { #define SHF_MASKOS 0x0ff00000 /* Reserved for OS-specific. */ #define SHF_MASKPROC 0xf0000000 /* Reserved for processor-specific. */ +/* Section group flags. */ +#define GRP_COMDAT 0x1 /* Group is a COMDAT. */ +#define GRP_MASKOS 0x0ff00000 /* Reserved for OS-specific. */ +#define GRP_MASKPROC 0xf0000000 /* Reserved for processor-specific. */ + /* Values for p_type. */ #define PT_NULL 0 /* Unused entry. */ #define PT_LOAD 1 /* Loadable segment. */ -- 2.41.0