This is the mail archive of the cygwin-cvs@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[newlib-cygwin] dlfcn: Remove stray debug output


https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=8259db586ae57134039f6a01344d4169021709ae

commit 8259db586ae57134039f6a01344d4169021709ae
Author: Corinna Vinschen <corinna@vinschen.de>
Date:   Wed Mar 22 11:10:15 2017 +0100

    dlfcn: Remove stray debug output
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/dlfcn.cc    | 1 -
 winsup/cygwin/dll_init.cc | 1 -
 2 files changed, 2 deletions(-)

diff --git a/winsup/cygwin/dlfcn.cc b/winsup/cygwin/dlfcn.cc
index 06e6854..5b21b32 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 490f1d6..a9143e7 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 */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]