mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
2001-08-24 Ulrich Drepper <drepper@redhat.com> * 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.
This commit is contained in:
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2001-08-24 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* 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 <roland@frob.com>
|
2001-08-24 Roland McGrath <roland@frob.com>
|
||||||
|
|
||||||
* string/tester.c (test_strerror): Don't use _sys_errlist/_sys_nerr.
|
* string/tester.c (test_strerror): Don't use _sys_errlist/_sys_nerr.
|
||||||
|
@ -211,6 +211,12 @@ _dl_debug_vdprintf (int fd, int tag_p, const char *fmt, va_list arg)
|
|||||||
++niov;
|
++niov;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case '%':
|
||||||
|
iov[niov].iov_base = (void *) fmt;
|
||||||
|
iov[niov].iov_len = 1;
|
||||||
|
++niov;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
assert (! "invalid format specifier");
|
assert (! "invalid format specifier");
|
||||||
}
|
}
|
||||||
|
@ -1520,7 +1520,7 @@ print_statistics (void)
|
|||||||
*wp++ = *cp++;
|
*wp++ = *cp++;
|
||||||
}
|
}
|
||||||
*wp = '\0';
|
*wp = '\0';
|
||||||
_dl_debug_printf (" time needed for relocation: %s (%s)\n",
|
_dl_debug_printf (" time needed for relocation: %s (%s%%)\n",
|
||||||
buf, pbuf);
|
buf, pbuf);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -1549,7 +1549,7 @@ print_statistics (void)
|
|||||||
*wp++ = *cp++;
|
*wp++ = *cp++;
|
||||||
}
|
}
|
||||||
*wp = '\0';
|
*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);
|
buf, pbuf);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user