Commit 4986ab17 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

s/vlc_object_die/vlc_object_kill/

parent 690aa907
......@@ -96,7 +96,7 @@ struct vlc_object_t
*****************************************************************************/
VLC_EXPORT( void *, __vlc_object_create, ( vlc_object_t *, int ) );
VLC_EXPORT( void, __vlc_object_destroy, ( vlc_object_t * ) );
VLC_EXPORT( void, __vlc_object_die, ( vlc_object_t * ) );
VLC_EXPORT( void, __vlc_object_kill, ( vlc_object_t * ) );
VLC_EXPORT( void, __vlc_object_attach, ( vlc_object_t *, vlc_object_t * ) );
VLC_EXPORT( void, __vlc_object_detach, ( vlc_object_t * ) );
VLC_EXPORT( void *, __vlc_object_get, ( vlc_object_t *, int ) );
......
......@@ -436,7 +436,7 @@ void __vlc_object_destroy( vlc_object_t *p_this )
}
void __vlc_object_die( vlc_object_t *p_this )
void __vlc_object_kill( vlc_object_t *p_this )
{
vlc_mutex_lock( &p_this->object_lock );
p_this->b_die = VLC_TRUE;
......
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