From owner-svn-src-all@FreeBSD.ORG Fri Apr 10 21:24:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC5E51065670; Fri, 10 Apr 2009 21:24:18 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CA4DE8FC1E; Fri, 10 Apr 2009 21:24:18 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n3ALOIL7063023; Fri, 10 Apr 2009 21:24:18 GMT (envelope-from kaiw@svn.freebsd.org) Received: (from kaiw@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n3ALOIoa063022; Fri, 10 Apr 2009 21:24:18 GMT (envelope-from kaiw@svn.freebsd.org) Message-Id: <200904102124.n3ALOIoa063022@svn.freebsd.org> From: Kai Wang Date: Fri, 10 Apr 2009 21:24:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r190904 - head/sys/sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2009 21:24:19 -0000 Author: kaiw Date: Fri Apr 10 21:24:18 2009 New Revision: 190904 URL: http://svn.freebsd.org/changeset/base/190904 Log: Added DT_GNU_HASH entry for GNU-style hash table. Modified: head/sys/sys/elf_common.h Modified: head/sys/sys/elf_common.h ============================================================================== --- head/sys/sys/elf_common.h Fri Apr 10 19:16:14 2009 (r190903) +++ head/sys/sys/elf_common.h Fri Apr 10 21:24:18 2009 (r190904) @@ -427,6 +427,7 @@ typedef struct { * built, these entries will need to be adjusted. */ #define DT_ADDRRNGLO 0x6ffffe00 +#define DT_GNU_HASH 0x6ffffef5 /* GNU-style hash table */ #define DT_CONFIG 0x6ffffefa /* configuration information */ #define DT_DEPAUDIT 0x6ffffefb /* dependency auditing */ #define DT_AUDIT 0x6ffffefc /* object auditing */