svn commit: r212501 - head/sys/sys

Konstantin Belousov kib at FreeBSD.org
Sun Sep 12 17:55:57 UTC 2010


Author: kib
Date: Sun Sep 12 17:55:56 2010
New Revision: 212501
URL: http://svn.freebsd.org/changeset/base/212501

Log:
  Add DF_1_LOADFLTR.
  
  MFC after:	3 days

Modified:
  head/sys/sys/elf_common.h

Modified: head/sys/sys/elf_common.h
==============================================================================
--- head/sys/sys/elf_common.h	Sun Sep 12 17:53:36 2010	(r212500)
+++ head/sys/sys/elf_common.h	Sun Sep 12 17:55:56 2010	(r212501)
@@ -471,6 +471,7 @@ typedef struct {
 #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_NODELETE	0x00000008	/* Set the RTLD_NODELETE for object */
+#define	DF_1_LOADFLTR	0x00000010	/* Immediate loading of filtees */
 #define	DF_1_NOOPEN     0x00000040	/* Do not allow loading on dlopen() */
 #define	DF_1_ORIGIN	0x00000080	/* Process $ORIGIN */
 


More information about the svn-src-all mailing list