[vlc-devel] commit: Extensions: hopefully fix a race condition on deactivation ( Jean-Philippe André )
    Laurent Aimar 
    fenrir at via.ecp.fr
       
    Wed Feb  3 21:02:40 CET 2010
    
    
  
On Wed, Feb 03, 2010, git version control wrote:
> +    vlc_mutex_lock( &p_ext->p_sys->command_lock );
>      vlc_cond_signal( &p_ext->p_sys->wait );
> +    vlc_mutex_unlock( &p_ext->p_sys->command_lock );
lock(); signal(); unlock() usually means there is a problem, unless
of course the wake up condition is protected by another lock and is
already set before these lines.
-- 
fenrir
    
    
More information about the vlc-devel
mailing list