From owner-svn-src-stable@FreeBSD.ORG Tue Dec 22 19:54:11 2009 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E149A106568B; Tue, 22 Dec 2009 19:54:11 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D074B8FC1F; Tue, 22 Dec 2009 19:54:11 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nBMJsBce074038; Tue, 22 Dec 2009 19:54:11 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nBMJsBbS074036; Tue, 22 Dec 2009 19:54:11 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200912221954.nBMJsBbS074036@svn.freebsd.org> From: Konstantin Belousov Date: Tue, 22 Dec 2009 19:54:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r200859 - stable/7/sys/sys X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2009 19:54:12 -0000 Author: kib Date: Tue Dec 22 19:54:11 2009 New Revision: 200859 URL: http://svn.freebsd.org/changeset/base/200859 Log: MFC r189925: Add some definitions for the DT_FLAGS_1 tag flags. Modified: stable/7/sys/sys/elf_common.h Directory Properties: stable/7/sys/ (props changed) stable/7/sys/cddl/contrib/opensolaris/ (props changed) stable/7/sys/contrib/dev/acpica/ (props changed) stable/7/sys/contrib/pf/ (props changed) Modified: stable/7/sys/sys/elf_common.h ============================================================================== --- stable/7/sys/sys/elf_common.h Tue Dec 22 19:51:49 2009 (r200858) +++ stable/7/sys/sys/elf_common.h Tue Dec 22 19:54:11 2009 (r200859) @@ -398,6 +398,11 @@ typedef struct { executable contains code using a static thread-local storage scheme. */ +/* Values for DT_FLAGS_1 */ +#define DF_1_BIND_NOW 0x00000001 /* Same as DF_BIND_NOW */ +#define DF_1_GLOBAL 0x00000002 /* Set the RTLD_GLOBAL for object */ +#define DF_1_ORIGIN 0x00000080 /* Process $ORIGIN */ + /* Values for n_type. Used in core files. */ #define NT_PRSTATUS 1 /* Process status. */ #define NT_FPREGSET 2 /* Floating point registers. */