Module Name: src Committed By: matt Date: Mon Oct 28 21:36:43 UTC 2013
Modified Files: src/sys/sys: exec_elf.h Log Message: Add DF_* values for DT_FLAGS To generate a diff of this commit: cvs rdiff -u -r1.129 -r1.130 src/sys/sys/exec_elf.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/exec_elf.h diff -u src/sys/sys/exec_elf.h:1.129 src/sys/sys/exec_elf.h:1.130 --- src/sys/sys/exec_elf.h:1.129 Tue Sep 10 16:24:02 2013 +++ src/sys/sys/exec_elf.h Mon Oct 28 21:36:43 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: exec_elf.h,v 1.129 2013/09/10 16:24:02 matt Exp $ */ +/* $NetBSD: exec_elf.h,v 1.130 2013/10/28 21:36:43 matt Exp $ */ /*- * Copyright (c) 1994 The NetBSD Foundation, Inc. @@ -693,6 +693,13 @@ typedef struct { #define DT_LOPROC 0x70000000 /* Processor-specific range */ #define DT_HIPROC 0x7fffffff +/* Flag values for DT_FLAGS */ +#define DF_ORIGIN 0x00000001 /* uses $ORIGIN */ +#define DF_SYMBOLIC 0x00000002 /* */ +#define DF_TEXTREL 0x00000004 /* */ +#define DF_BIND_NOW 0x00000008 /* */ +#define DF_STATICT_LS 0x00000010 /* */ + /* Flag values for DT_FLAGS_1 (incomplete) */ #define DF_1_BIND_NOW 0x00000001 /* Same as DF_BIND_NOW */ #define DF_1_NODELETE 0x00000008 /* Set the RTLD_NODELETE for object */