dlfcn: Remove stray debug output
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
90e35b1eb3
commit
8259db586a
@ -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;
|
||||||
|
@ -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 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user