summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-28 16:21:30 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-28 16:21:30 +0000
commite6df9a569331c30b85a629d3312443454273848b (patch)
treeb152c1907f873a40209ec77e2df701bd466c2103
parentbb7acc5fff4287de6c7d7863487fa506fa993764 (diff)
Update.
* iconv/gconv_dl.c: Unload all modules when debugging memory use.
-rw-r--r--ChangeLog2
-rw-r--r--iconv/gconv_dl.c27
2 files changed, 28 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e2e81d324..a0237ca4b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
1999-01-28 Ulrich Drepper <drepper@cygnus.com>
+ * iconv/gconv_dl.c: Unload all modules when debugging memory use.
+
* locale/loadlocale.c (_nl_unload_locale): Free locale name.
* intl/finddomain.c (free_mem): Also free filename.
diff --git a/iconv/gconv_dl.c b/iconv/gconv_dl.c
index 7c64a912d9..5650389c78 100644
--- a/iconv/gconv_dl.c
+++ b/iconv/gconv_dl.c
@@ -1,5 +1,5 @@
/* Handle loading/unloading of shared object for transformation.
- Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -250,3 +250,28 @@ __gconv_release_shlib (struct gconv_loaded_object *handle)
return GCONV_OK;
}
+
+
+/* We run this if we debug the memory allocation. */
+static void
+do_release_all (const void *nodep, VISIT value, int level)
+{
+ struct gconv_loaded_object *obj = *(struct gconv_loaded_object **) nodep;
+
+ if (value != preorder && value != leaf)
+ return;
+
+ /* Unload the shared object. We don't use the trick to
+ catch errors since in the case an error is signalled
+ something is really wrong. */
+ _dl_close (obj->handle);
+
+ free (obj);
+}
+
+static void __attribute__ ((unused))
+free_mem (void)
+{
+ __twalk (loaded, do_release_all);
+}
+text_set_element (__libc_subfreeres, free_mem);