diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-11-06 00:16:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-11-06 00:16:32 +0000 |
commit | c95f3fd42ed8d7660e817cf74b0883d7563d8102 (patch) | |
tree | 1395eae94b48080a50cbefa142906ce445fdae7f /elf/elf.h | |
parent | ea41b9267dbd64faec6630e45fac87afb663ec11 (diff) | |
download | glibc-c95f3fd42ed8d7660e817cf74b0883d7563d8102.tar.gz glibc-c95f3fd42ed8d7660e817cf74b0883d7563d8102.tar.xz glibc-c95f3fd42ed8d7660e817cf74b0883d7563d8102.zip |
Update.
* elf/elf.h: Add dynamic tag definitions for prelinking. * elf/rtld.c (process_envvars): Avoid using array of string pointers. Rewrite code to remove environment varables for SUID binaries. Small optimization in LD_PROFILE handling. * sysdeps/generic/unsecvars.h: Adjust format for process_envvars changes. * sysdeps/unix/sysv/linux/i386/dl-librecon.h: Likewise. * sysdeps/generic/dl-sysdep.c: Don't initialize _dl_cpuclock_offset.
Diffstat (limited to 'elf/elf.h')
-rw-r--r-- | elf/elf.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/elf/elf.h b/elf/elf.h index cb1a7af829..82c7936bad 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -663,6 +663,9 @@ typedef struct Dyn.d_un.d_val field of the Elf*_Dyn structure. This follows Sun's approach. */ #define DT_VALRNGLO 0x6ffffd00 +#define DT_GNU_PRELINKED 0x6ffffdf5 /* Prelinking timestamp */ +#define DT_GNU_CONFLICTSZ 0x6ffffdf6 /* Size of conflict section */ +#define DT_GNU_LIBLISTSZ 0x6ffffdf7 /* Size of library list */ #define DT_CHECKSUM 0x6ffffdf8 #define DT_PLTPADSZ 0x6ffffdf9 #define DT_MOVEENT 0x6ffffdfa @@ -680,6 +683,8 @@ typedef struct If any adjustment is made to the ELF object after it has been built these entries will need to be adjusted. */ #define DT_ADDRRNGLO 0x6ffffe00 +#define DT_GNU_CONFLICT 0x6ffffef8 /* Start of conflict section */ +#define DT_GNU_LIBLIST 0x6ffffef9 /* Library list */ #define DT_CONFIG 0x6ffffefa /* Configuration information. */ #define DT_DEPAUDIT 0x6ffffefb /* Dependency auditing. */ #define DT_AUDIT 0x6ffffefc /* Object auditing. */ |