diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-11-06 01:12:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-11-06 01:12:33 +0000 |
commit | b92e378086449e2707b8b2fd3d2f50cc0b8871e9 (patch) | |
tree | cc81132e476407f88d3262e6d07472079073e761 | |
parent | 94a749f69ad4b18250e9aab7292b6e8496e0a065 (diff) | |
download | glibc-b92e378086449e2707b8b2fd3d2f50cc0b8871e9.zip glibc-b92e378086449e2707b8b2fd3d2f50cc0b8871e9.tar.gz glibc-b92e378086449e2707b8b2fd3d2f50cc0b8871e9.tar.bz2 |
* elf/rtld.c (dl_main): Use the page size to find the map start.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | elf/rtld.c | 3 | ||||
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/register-atfork.c | 3 |
4 files changed, 12 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2007-11-05 Daniel Jacobowitz <dan@codesourcery.com> + + * elf/rtld.c (dl_main): Use the page size to find the map start. + 2007-11-05 Ulrich Drepper <drepper@redhat.com> * time/tzfile.c (__tzfile_read): Fix check for version 0 data files. @@ -1166,7 +1166,8 @@ of this helper program; chances are you did not intend to run this program.\n\ ElfW(Addr) allocend; /* Remember where the main program starts in memory. */ - mapstart = (main_map->l_addr + (ph->p_vaddr & ~(ph->p_align - 1))); + mapstart = (main_map->l_addr + + (ph->p_vaddr & ~(GLRO(dl_pagesize) - 1))); if (main_map->l_map_start > mapstart) main_map->l_map_start = mapstart; diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 6461785..c92e6ab 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2007-11-05 Ulrich Drepper <drepper@redhat.com> + + * sysdeps/unix/sysv/linux/register-atfork.c (__register_atfork): + Use __linkin_atfork. + 2007-11-03 Mike Frysinger <vapier@gentoo.org> * sysdeps/unix/sysv/linux/sh/lowlevellock.S (LOAD_FUTEX_WAIT): Add diff --git a/nptl/sysdeps/unix/sysv/linux/register-atfork.c b/nptl/sysdeps/unix/sysv/linux/register-atfork.c index 71abd0f..bd10329 100644 --- a/nptl/sysdeps/unix/sysv/linux/register-atfork.c +++ b/nptl/sysdeps/unix/sysv/linux/register-atfork.c @@ -98,8 +98,7 @@ __register_atfork (prepare, parent, child, dso_handle) newp->child_handler = child; newp->dso_handle = dso_handle; - newp->next = __fork_handlers; - __fork_handlers = newp; + __linkin_atfork (newp); } /* Release the lock. */ |