summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--winsup/cygwin/dlfcn.cc1
-rw-r--r--winsup/cygwin/dll_init.cc1
2 files changed, 0 insertions, 2 deletions
diff --git a/winsup/cygwin/dlfcn.cc b/winsup/cygwin/dlfcn.cc
index 06e685447..5b21b3214 100644
--- a/winsup/cygwin/dlfcn.cc
+++ b/winsup/cygwin/dlfcn.cc
@@ -374,7 +374,6 @@ dlclose (void *handle)
{
/* reference counting */
dll *d = dlls.find (handle);
- if (d) system_printf ("%W count %d", d->name, d->count);
if (!d || d->count <= 0)
{
errno = ENOENT;
diff --git a/winsup/cygwin/dll_init.cc b/winsup/cygwin/dll_init.cc
index 490f1d688..a9143e769 100644
--- a/winsup/cygwin/dll_init.cc
+++ b/winsup/cygwin/dll_init.cc
@@ -436,7 +436,6 @@ dll_list::detach (void *retaddr)
guard (true);
if ((d = find (retaddr)))
{
- system_printf ("HERE %W", d->name);
/* Ensure our exception handler is enabled for destructors */
exception protect;
/* Call finalize function if we are not already exiting */