svn commit: r200859 - stable/7/sys/sys

Konstantin Belousov kib at FreeBSD.org
Tue Dec 22 19:54:12 UTC 2009


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. */


More information about the svn-src-stable-7 mailing list