mirror of git://sourceware.org/git/glibc.git
* elf/dl-close.c (_dl_close): Unify debug message format.
This commit is contained in:
parent
ac53c9c64b
commit
d8505f90bf
|
|
@ -1,5 +1,7 @@
|
||||||
2005-03-06 Ulrich Drepper <drepper@redhat.com>
|
2005-03-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/dl-close.c (_dl_close): Unify debug message format.
|
||||||
|
|
||||||
* elf/dl-close.c (_dl_close): Print debug message just before
|
* elf/dl-close.c (_dl_close): Print debug message just before
|
||||||
destroying a link map.
|
destroying a link map.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -140,7 +140,7 @@ _dl_close (void *_map)
|
||||||
{
|
{
|
||||||
/* There are still references to this object. Do nothing more. */
|
/* There are still references to this object. Do nothing more. */
|
||||||
if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0))
|
if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0))
|
||||||
_dl_debug_printf ("\nclosing file=%s; opencount == %u\n",
|
_dl_debug_printf ("\nclosing file=%s; opencount=%u\n",
|
||||||
map->l_name, map->l_opencount);
|
map->l_name, map->l_opencount);
|
||||||
|
|
||||||
/* Decrement the object's reference counter, not the dependencies'. */
|
/* Decrement the object's reference counter, not the dependencies'. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue