From b2d3c3befb45ae4e5284274d9ce75ca462119239 Mon Sep 17 00:00:00 2001 From: Carlos O'Donell Date: Thu, 7 Feb 2013 13:53:46 -0500 Subject: [PATCH] Add more comments to _dl_load_cache_lookup(). Calling _dl_load_cache_lookup will load the cache if not already. If loading the cache fails no more attempts will be made to load the cache. --- ChangeLog | 5 +++++ elf/dl-cache.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0fd23d3..ab411fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2013-02-08 Carlos O'Donell + * elf/dl-cache.c (_dl_load_cache_lookup): Comment that cache is + loaded if not already and that a failure is permanent. + +2013-02-08 Carlos O'Donell + [BZ #15006] * sysdeps/generic/ldconfig.h: Define FLAG_ARM_LIBSF. * elf/cache.c (print_entry): Add FLAG_ARM_LIBSF support. diff --git a/elf/dl-cache.c b/elf/dl-cache.c index 2c4bcc6..030fdca 100644 --- a/elf/dl-cache.c +++ b/elf/dl-cache.c @@ -172,8 +172,9 @@ _dl_cache_libcmp (const char *p1, const char *p2) } -/* Look up NAME in ld.so.cache and return the file name stored there, - or null if none is found. */ +/* Look up NAME in ld.so.cache and return the file name stored there, or null + if none is found. The cache is loaded if it was not already. If loading + the cache previously failed there will be no more attempts to load it. */ const char * internal_function -- 2.7.4