svn commit: r186720 - head/sys/sys
Kai Wang
kaiw at FreeBSD.org
Sat Jan 3 05:42:51 PST 2009
Author: kaiw
Date: Sat Jan 3 13:42:49 2009
New Revision: 186720
URL: http://svn.freebsd.org/changeset/base/186720
Log:
Added section type SHT_GNU_HASH. GNU-style .hash section is a new
style of hash section with better performace than the original SYSV
hash. It can be generated by newer binutils.
Modified:
head/sys/sys/elf_common.h
Modified: head/sys/sys/elf_common.h
==============================================================================
--- head/sys/sys/elf_common.h Sat Jan 3 13:24:08 2009 (r186719)
+++ head/sys/sys/elf_common.h Sat Jan 3 13:42:49 2009 (r186720)
@@ -267,6 +267,7 @@ typedef struct {
#define SHT_SUNW_dof 0x6ffffff4
#define SHT_SUNW_cap 0x6ffffff5
#define SHT_SUNW_SIGNATURE 0x6ffffff6
+#define SHT_GNU_HASH 0x6ffffff6
#define SHT_SUNW_ANNOTATE 0x6ffffff7
#define SHT_SUNW_DEBUGSTR 0x6ffffff8
#define SHT_SUNW_DEBUG 0x6ffffff9
More information about the svn-src-head
mailing list