diff options
author | Andreas Jaeger <aj@suse.de> | 2000-04-18 17:21:41 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-04-18 17:21:41 +0000 |
commit | 1531e094ceb1075d6faba5e52367d7bf2baa0c47 (patch) | |
tree | 4715ee0dd7201e62da2097d2d9b5730810769977 | |
parent | 7604414a1c69c6cb90069d239546a5b5970fb32c (diff) | |
download | glibc-1531e094ceb1075d6faba5e52367d7bf2baa0c47.zip glibc-1531e094ceb1075d6faba5e52367d7bf2baa0c47.tar.gz glibc-1531e094ceb1075d6faba5e52367d7bf2baa0c47.tar.bz2 |
2000-04-18 Andreas Jaeger <aj@suse.de>
* elf/rtld.c (print_statistics): Added HP_TIMINIG_NONAVAIL where
needed.
2000-04-18 Andreas Jaeger <aj@suse.de>
* elf/rtld.c (print_statistics): Added HP_TIMINIG_NONAVAIL where
needed.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | elf/rtld.c | 5 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2000-04-18 Andreas Jaeger <aj@suse.de> + + * elf/rtld.c (print_statistics): Added HP_TIMINIG_NONAVAIL where + needed. + 2000-04-18 Ulrich Drepper <drepper@redhat.com> * posix/Makefile (tests): Add tst-getaddrinfo. @@ -1486,6 +1486,7 @@ print_statistics (void) } /* Print relocation statistics. */ +#ifndef HP_TIMING_NONAVAIL if (HP_TIMING_AVAIL) { HP_TIMING_PRINT (buf, sizeof (buf), relocate_time); @@ -1507,13 +1508,14 @@ print_statistics (void) *wp = '\0'; _dl_debug_message (0, " (", buf, "%)\n", NULL); } - +#endif buf[sizeof (buf) - 1] = '\0'; _dl_debug_message (1, " number of relocations: ", _itoa_word (_dl_num_relocations, buf + sizeof (buf) - 1, 10, 0), "\n", NULL); +#ifndef HP_TIMING_NONAVAIL /* Time spend while loading the object and the dependencies. */ if (HP_TIMING_AVAIL) { @@ -1536,4 +1538,5 @@ print_statistics (void) *wp = '\0'; _dl_debug_message (0, " (", buf, "%)\n", NULL); } +#endif } |