summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorJoakim Tjernlund <joakim.tjernlund@transmode.se>2004-08-10 10:04:35 +0000
committerJoakim Tjernlund <joakim.tjernlund@transmode.se>2004-08-10 10:04:35 +0000
commit856860ed52514d0e8052297a71fc8a345c573995 (patch)
tree03839afdf29418d2a7ae46686347632ebb5272a1 /ldso
parent7c2d61733a12818023af530d003b358b4ca077f1 (diff)
Revmoved _dl_brkp and _dl_envp. They are not needed anymore.
Diffstat (limited to 'ldso')
-rw-r--r--ldso/ldso/ldso.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/ldso/ldso/ldso.c b/ldso/ldso/ldso.c
index a4e4595bb..70e801909 100644
--- a/ldso/ldso/ldso.c
+++ b/ldso/ldso/ldso.c
@@ -41,8 +41,6 @@
char *_dl_library_path = 0; /* Where we look for libraries */
char *_dl_preload = 0; /* Things to be loaded before the libs */
char *_dl_ldsopath = 0; /* Location of the shared lib loader */
-unsigned long *_dl_brkp = 0; /* The end of the data segment for brk and sbrk */
-unsigned long *_dl_envp = 0; /* The environment address */
int _dl_secure = 1; /* Are we dealing with setuid stuff? */
int _dl_errno = 0; /* We can't use the real errno in ldso */
size_t _dl_pagesize = 0; /* Store the page size for use later */
@@ -611,18 +609,6 @@ void _dl_get_ready_to_run(struct elf_resolve *tpnt, struct elf_resolve *app_tpnt
dynamicly linked if we are using ld.so.1, so we have to look
up each symbol individually. */
-
- _dl_brkp = (unsigned long *) (intptr_t) _dl_find_hash("__curbrk", _dl_symbol_tables, 0);
-
- if (_dl_brkp) {
- *_dl_brkp = brk_addr;
- }
- _dl_envp = (unsigned long *) (intptr_t) _dl_find_hash("__environ", _dl_symbol_tables, 0);
-
- if (_dl_envp) {
- *_dl_envp = (unsigned long) envp;
- }
-
#ifndef FORCE_SHAREABLE_TEXT_SEGMENTS
{
unsigned int j;