1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* elf/dl-close.c (_dl_close): Decrement l_opencount before

printing debug message.
	* elf/dl-open.c (dl_open_worker): Always print the new opencount
	in debug messages.
This commit is contained in:
Ulrich Drepper
2005-03-07 08:06:09 +00:00
parent d8505f90bf
commit 21745dfa61
3 changed files with 11 additions and 4 deletions

View File

@ -282,7 +282,7 @@ dl_open_worker (void *a)
/* Let the user know about the opencount. */
if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0))
_dl_debug_printf ("opening file=%s [%lu]; opencount=%u\n\n",
new->l_name, new->l_ns, new->l_opencount);
new->l_name, new->l_ns, new->l_opencount + 1);
/* If the user requested the object to be in the global namespace
but it is not so far, add it now. */