diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-03-06 09:07:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-03-06 09:07:56 +0000 |
commit | 53bfdc1cf6f9360dfc5eb95c906159f949a8f83a (patch) | |
tree | 8009e94c553c7170b0f8b94e407d6051a8a5bc1f /elf/rtld.c | |
parent | 154d10bdf1984f4fe28f898e07bc25c5367f443e (diff) | |
download | glibc-53bfdc1cf6f9360dfc5eb95c906159f949a8f83a.zip glibc-53bfdc1cf6f9360dfc5eb95c906159f949a8f83a.tar.gz glibc-53bfdc1cf6f9360dfc5eb95c906159f949a8f83a.tar.bz2 |
Update.
2004-03-06 Ulrich Drepper <drepper@redhat.com>
* elf/dl-open.c: No need to pass any parameter to _dl_start_profile.
They are the same in both places.
* elf/dl-profile.c: Likewise.
* elf/rtld.c: Likewise.
* sysdeps/generic/ldsodefs.h: Likewise.
* elf/dl-support.c: Define _dl_profile_output variable. Initialize it.
Diffstat (limited to 'elf/rtld.c')
-rw-r--r-- | elf/rtld.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1821,7 +1821,7 @@ cannot allocate TLS data structures for initial thread"); needs to have _dl_profile_map set up by the relocator. */ if (__builtin_expect (GL(dl_profile_map) != NULL, 0)) /* We must prepare the profiling. */ - _dl_start_profile (GL(dl_profile_map), GLRO(dl_profile_output)); + _dl_start_profile (); if (GL(dl_rtld_map).l_opencount > 1) { |