aboutsummaryrefslogtreecommitdiffstats
path: root/libc/include/sys/exec_elf.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-10-28 22:03:54 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-10-28 22:03:55 +0000
commit020bcdaef349b6bd82302a0656fdf9aaff30bdb3 (patch)
tree375a1f8838e1f1aada4bfda687c453a4a0213658 /libc/include/sys/exec_elf.h
parent486d99f050a609c16641614edc72d71746ce859a (diff)
parent74ce45972d88604aa759040cfd2570674cfb439d (diff)
downloadandroid_bionic-020bcdaef349b6bd82302a0656fdf9aaff30bdb3.tar.gz
android_bionic-020bcdaef349b6bd82302a0656fdf9aaff30bdb3.tar.bz2
android_bionic-020bcdaef349b6bd82302a0656fdf9aaff30bdb3.zip
Merge "Update <sys/exec_elf.h> to get the DF_* flags."
Diffstat (limited to 'libc/include/sys/exec_elf.h')
-rw-r--r--libc/include/sys/exec_elf.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/libc/include/sys/exec_elf.h b/libc/include/sys/exec_elf.h
index ec54a601a..e3aa52ae2 100644
--- a/libc/include/sys/exec_elf.h
+++ b/libc/include/sys/exec_elf.h
@@ -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 */