Commit 6310a0d5 authored by Pierre Ynard's avatar Pierre Ynard

win32: disable broken thread times too

parent da1d348a
...@@ -170,7 +170,7 @@ void vlc_thread_join( vlc_object_t *p_this ) ...@@ -170,7 +170,7 @@ void vlc_thread_join( vlc_object_t *p_this )
{ {
vlc_object_internals_t *p_priv = vlc_internals( p_this ); vlc_object_internals_t *p_priv = vlc_internals( p_this );
#if defined( WIN32 ) && !defined( UNDER_CE ) #if 0 && defined( WIN32 ) && !defined( UNDER_CE )
HANDLE hThread; HANDLE hThread;
FILETIME create_ft, exit_ft, kernel_ft, user_ft; FILETIME create_ft, exit_ft, kernel_ft, user_ft;
int64_t real_time, kernel_time, user_time; int64_t real_time, kernel_time, user_time;
...@@ -190,7 +190,7 @@ void vlc_thread_join( vlc_object_t *p_this ) ...@@ -190,7 +190,7 @@ void vlc_thread_join( vlc_object_t *p_this )
vlc_join( p_priv->thread_id, NULL ); vlc_join( p_priv->thread_id, NULL );
#if defined( WIN32 ) && !defined( UNDER_CE ) #if 0 && defined( WIN32 ) && !defined( UNDER_CE )
/* FIXME: this could work on WinCE too... except that it seems always to /* FIXME: this could work on WinCE too... except that it seems always to
* return 0 for exit_ft and kernel_ft */ * return 0 for exit_ft and kernel_ft */
if( GetThreadTimes( hThread, &create_ft, &exit_ft, &kernel_ft, &user_ft ) ) if( GetThreadTimes( hThread, &create_ft, &exit_ft, &kernel_ft, &user_ft ) )
......
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