diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-01-16 03:03:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-01-16 03:03:47 +0000 |
commit | 39b04aa39823faf1cc414e7f3eca4f43e01426e4 (patch) | |
tree | ba0677ad81e005121e537fadff4088db3a334e1c /elf | |
parent | d8e36e001c7e276d17b911d9c4eabe33358a3ed0 (diff) | |
download | glibc-39b04aa39823faf1cc414e7f3eca4f43e01426e4.zip glibc-39b04aa39823faf1cc414e7f3eca4f43e01426e4.tar.gz glibc-39b04aa39823faf1cc414e7f3eca4f43e01426e4.tar.bz2 |
Update.
2004-01-15 Ulrich Drepper <drepper@redhat.com>
* elf/rtld.c: Handle platforms with HP_TIMING_NONAVAIL defined.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/rtld.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -277,7 +277,13 @@ _dl_start_final (void *arg, struct dl_start_final_info *info) #endif if (__builtin_expect (GL(dl_debug_mask) & DL_DEBUG_STATISTICS, 0)) - print_statistics (&rtld_total_time); + { +#ifndef HP_TIMING_NONAVAIL + print_statistics (&rtld_total_time); +#else + print_statistics (NULL); +#endif + } return start_addr; } |