Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2017-03-22 13:10:15 +0300
committerCorinna Vinschen <corinna@vinschen.de>2017-03-22 13:10:15 +0300
commit8259db586ae57134039f6a01344d4169021709ae (patch)
tree9b26f5ca1f18e4e435a9b0d73bac2e1ab76cf2aa
parent90e35b1eb3df4070e68afc5e7060665214d586be (diff)
dlfcn: Remove stray debug outputnewlib-snapshot-20170323
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-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 */