]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 16 Jan 2004 03:03:47 +0000 (03:03 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 16 Jan 2004 03:03:47 +0000 (03:03 +0000)
2004-01-15  Ulrich Drepper  <drepper@redhat.com>

* elf/rtld.c: Handle platforms with HP_TIMING_NONAVAIL defined.

ChangeLog
elf/rtld.c

index ed1f00aec4e47eff50257156df67bbd01bb6406d..a4cf96803da4577474b0da916d5259bc2bc80306 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-15  Ulrich Drepper  <drepper@redhat.com>
+
+       * elf/rtld.c: Handle platforms with HP_TIMING_NONAVAIL defined.
+
 2004-01-16  Alfred M. Szmidt  <ams@kemisten.nu>
 
        * sysdeps/generic/dl-execstack.c (_dl_make_stack_executable): Adjust
index 803d586dea8550a40b5f172eab1c3615d5606cd2..62c997a00c7e2a068b21b1b44ad7c605b7890680 100644 (file)
@@ -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;
 }
This page took 0.054679 seconds and 5 git commands to generate.