dlfcn: Remove stray debug output

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2017-03-22 11:10:15 +01:00
parent 90e35b1eb3
commit 8259db586a
2 changed files with 0 additions and 2 deletions

View File

@ -374,7 +374,6 @@ dlclose (void *handle)
{ {
/* reference counting */ /* reference counting */
dll *d = dlls.find (handle); dll *d = dlls.find (handle);
if (d) system_printf ("%W count %d", d->name, d->count);
if (!d || d->count <= 0) if (!d || d->count <= 0)
{ {
errno = ENOENT; errno = ENOENT;

View File

@ -436,7 +436,6 @@ dll_list::detach (void *retaddr)
guard (true); guard (true);
if ((d = find (retaddr))) if ((d = find (retaddr)))
{ {
system_printf ("HERE %W", d->name);
/* Ensure our exception handler is enabled for destructors */ /* Ensure our exception handler is enabled for destructors */
exception protect; exception protect;
/* Call finalize function if we are not already exiting */ /* Call finalize function if we are not already exiting */