Changeset 17125cc60b178e1f4419e5242f233f89c5368703

Show
Ignore:
Timestamp:
13/03/08 04:38:54 (9 months ago)
Author:
Jean-Baptiste Kempf <jb@videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@videolan.org> 1205379534 -0700
git-parent:

[e6b20aa94016e228096229844d49d3a28ebf947d]

git-author:
Jean-Baptiste Kempf <jb@videolan.org> 1205379534 -0700
Message:

Shut a few unused parameters for Windows compiling.

Files:

Legend:

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

    r21720e0 r17125cc  
    379379{ 
    380380#if defined( UNDER_CE ) 
     381    VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); 
     382 
    381383    DeleteCriticalSection( &p_mutex->csection ); 
    382384 
    383385#elif defined( WIN32 ) 
     386    VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); 
     387 
    384388    if( p_mutex->mutex ) 
    385389        CloseHandle( p_mutex->mutex ); 
     
    500504{ 
    501505#if defined( UNDER_CE ) 
     506    VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); 
     507 
    502508    CloseHandle( p_condvar->event ); 
    503509 
    504510#elif defined( WIN32 ) 
     511    VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); 
     512 
    505513    if( !p_condvar->semaphore ) 
    506514        CloseHandle( p_condvar->event ); 
     
    685693    vlc_object_internals_t *p_priv = p_this->p_internals; 
    686694#if defined( WIN32 ) || defined( UNDER_CE ) 
     695    VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); 
     696 
    687697    if( !p_priv->thread_id.hThread ) 
    688698        p_priv->thread_id.hThread = GetCurrentThread();