Commit 55153f42 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Add some debug

parent 0b28505c
...@@ -575,6 +575,8 @@ int __vlc_object_waitpipe( vlc_object_t *obj ) ...@@ -575,6 +575,8 @@ int __vlc_object_waitpipe( vlc_object_t *obj )
fd = internals->pipes[1]; fd = internals->pipes[1];
internals->pipes[1] = -1; internals->pipes[1] = -1;
vlc_spin_unlock (&internals->spin); vlc_spin_unlock (&internals->spin);
msg_Dbg (obj, "waitpipe: object already dying");
if (fd != -1) if (fd != -1)
close (fd); close (fd);
} }
...@@ -684,7 +686,10 @@ void __vlc_object_kill( vlc_object_t *p_this ) ...@@ -684,7 +686,10 @@ void __vlc_object_kill( vlc_object_t *p_this )
vlc_spin_unlock (&internals->spin); vlc_spin_unlock (&internals->spin);
if( fd != -1 ) if( fd != -1 )
{
msg_Dbg (p_this, "waitpipe: object killed");
close (fd); close (fd);
}
if( p_this->i_object_type == VLC_OBJECT_LIBVLC ) if( p_this->i_object_type == VLC_OBJECT_LIBVLC )
for( int i = 0; i < p_this->i_children ; i++ ) for( int i = 0; i < p_this->i_children ; i++ )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment