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 /sysdeps/generic | |
parent | 154d10bdf1984f4fe28f898e07bc25c5367f443e (diff) | |
download | glibc-53bfdc1cf6f9360dfc5eb95c906159f949a8f83a.tar.gz glibc-53bfdc1cf6f9360dfc5eb95c906159f949a8f83a.tar.xz glibc-53bfdc1cf6f9360dfc5eb95c906159f949a8f83a.zip |
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 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/ldsodefs.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index e6e144f9eb..cdb0735d49 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -476,8 +476,7 @@ struct rtld_global_ro void (*) (void *), void *); void (internal_function *_dl_signal_error) (int, const char *, const char *, const char *); - void (internal_function *_dl_start_profile) (struct link_map *, - const char *); + void (internal_function *_dl_start_profile) (void); void (*_dl_mcount) (ElfW(Addr) frompc, ElfW(Addr) selfpc); lookup_t (internal_function *_dl_lookup_symbol) (const char *, struct link_map *, @@ -797,8 +796,7 @@ extern void _dl_init_paths (const char *library_path) internal_function; /* Gather the information needed to install the profiling tables and start the timers. */ -extern void _dl_start_profile (struct link_map *map, const char *output_dir) - internal_function attribute_hidden; +extern void _dl_start_profile (void) internal_function attribute_hidden; /* The actual functions used to keep book on the calls. */ extern void _dl_mcount (ElfW(Addr) frompc, ElfW(Addr) selfpc); |