From: Ulrich Drepper Date: Sat, 25 Aug 2001 06:33:07 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.20~15557 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf44e2dd737fb0e6e75d68bc82df84de657d0a40;p=platform%2Fupstream%2Flinaro-glibc.git Update. 2001-08-24 Ulrich Drepper * elf/rtld.c (print_statistics): Printf % after percent values. * elf/dl-misc.c (_dl_debug_vdprintf): Implement %%. * elf/dl-lookup.c (_dl_lookup_symbol): If we use the cache we don't have to compute the hash value and initialize current_value. Move reference_name variable to where it is needed. (_dl_lookup_versioned_symbol): Likewise. --- diff --git a/ChangeLog b/ChangeLog index d61be87..d4b9c20 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2001-08-24 Ulrich Drepper + + * elf/rtld.c (print_statistics): Printf % after percent values. + * elf/dl-misc.c (_dl_debug_vdprintf): Implement %%. + + * elf/dl-lookup.c (_dl_lookup_symbol): If we use the cache we + don't have to compute the hash value and initialize current_value. + Move reference_name variable to where it is needed. + (_dl_lookup_versioned_symbol): Likewise. + 2001-08-24 Roland McGrath * string/tester.c (test_strerror): Don't use _sys_errlist/_sys_nerr. diff --git a/elf/dl-misc.c b/elf/dl-misc.c index f4b7398..f1abfb7 100644 --- a/elf/dl-misc.c +++ b/elf/dl-misc.c @@ -211,6 +211,12 @@ _dl_debug_vdprintf (int fd, int tag_p, const char *fmt, va_list arg) ++niov; break; + case '%': + iov[niov].iov_base = (void *) fmt; + iov[niov].iov_len = 1; + ++niov; + break; + default: assert (! "invalid format specifier"); } diff --git a/elf/rtld.c b/elf/rtld.c index c46f2d1..f17d71d 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -1520,7 +1520,7 @@ print_statistics (void) *wp++ = *cp++; } *wp = '\0'; - _dl_debug_printf (" time needed for relocation: %s (%s)\n", + _dl_debug_printf (" time needed for relocation: %s (%s%%)\n", buf, pbuf); } #endif @@ -1549,7 +1549,7 @@ print_statistics (void) *wp++ = *cp++; } *wp = '\0'; - _dl_debug_printf (" time needed to load objects: %s (%s)\n", + _dl_debug_printf (" time needed to load objects: %s (%s%%)\n", buf, pbuf); } #endif