1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00
* elf/dl-close.c: Decrement opencount for all dependencies which can
	be removed even if the object is not yet unloaded.
	* elf/dl-deps.c (_dl_map_object_deps): If dependency is already in
	the list decrement opencount of all dependencies.
	* elf/dl-load.c (_dl_map_object_from_fd): Increment object of object
	and all dependencies.
	(_dl_map_object): Likewise.
	* elf/dl-lookup.c (add_dependency): Likewise.

	* elf/loadtest.c: Add debug when with more output.
This commit is contained in:
Ulrich Drepper
2000-10-21 06:02:49 +00:00
parent f6de2239e2
commit 8699e7b1da
8 changed files with 71 additions and 18 deletions

View File

@ -244,11 +244,16 @@ _dl_map_object_deps (struct link_map *map,
++nduplist;
if (dep->l_reserved)
/* This object is already in the search list we are
building. Don't add a duplicate pointer.
Release the reference just added by
_dl_map_object. */
--dep->l_opencount;
{
/* This object is already in the search list we are
building. Don't add a duplicate pointer.
Release the reference just added by
_dl_map_object. */
if (dep->l_initfini != NULL)
for (i = 1; dep->l_initfini[i] != NULL; ++i)
--dep->l_initfini[i]->l_opencount;
--dep->l_opencount;
}
else
{
/* Append DEP to the unique list. */
@ -360,6 +365,9 @@ _dl_map_object_deps (struct link_map *map,
are building. Don't add a duplicate pointer.
Release the reference just added by
_dl_map_object. */
if (args.aux->l_initfini != NULL)
for (i = 1; args.aux->l_initfini[i] != NULL; ++i)
--args.aux->l_initfini[i]->l_opencount;
--args.aux->l_opencount;
for (late = newp; late->unique; late = late->unique)