Changeset 23afa490b8437080f779fbab6052c860f00f1640

Show
Ignore:
Timestamp:
03/05/08 11:22:18 (7 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1209806538 +0300
git-parent:

[65a9c5b22206b4264dbe737e7e07fdbeddef14d2]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1209804111 +0300
Message:

threads: use vlc_internals()

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/misc/threads.c

    r50e969e r23afa49  
    413413    int i_ret; 
    414414    void *p_data = (void *)p_this; 
    415     vlc_object_internals_t *p_priv = p_this->p_internals
     415    vlc_object_internals_t *p_priv = vlc_internals( p_this )
    416416 
    417417    vlc_mutex_lock( &p_this->object_lock ); 
     
    540540                               int i_line, int i_priority ) 
    541541{ 
    542     vlc_object_internals_t *p_priv = p_this->p_internals
     542    vlc_object_internals_t *p_priv = vlc_internals( p_this )
    543543#if defined( WIN32 ) || defined( UNDER_CE ) 
    544544    VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); 
     
    604604void __vlc_thread_join( vlc_object_t *p_this, const char * psz_file, int i_line ) 
    605605{ 
    606     vlc_object_internals_t *p_priv = p_this->p_internals
     606    vlc_object_internals_t *p_priv = vlc_internals( p_this )
    607607 
    608608#if defined( UNDER_CE ) || defined( WIN32 )