]> git.sesse.net Git - vlc/blob - src/misc/threads.c
vlc_clone, vlc_join: untangle objects and threads
[vlc] / src / misc / threads.c
1 /*****************************************************************************
2  * threads.c : threads implementation for the VideoLAN client
3  *****************************************************************************
4  * Copyright (C) 1999-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *          Clément Sténac
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32
33 #include "libvlc.h"
34 #include <assert.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38 #include <signal.h>
39
40 #define VLC_THREADS_UNINITIALIZED  0
41 #define VLC_THREADS_PENDING        1
42 #define VLC_THREADS_ERROR          2
43 #define VLC_THREADS_READY          3
44
45 /*****************************************************************************
46  * Global mutex for lazy initialization of the threads system
47  *****************************************************************************/
48 static volatile unsigned i_initializations = 0;
49
50 #if defined( LIBVLC_USE_PTHREAD )
51 # include <sched.h>
52
53 static pthread_mutex_t once_mutex = PTHREAD_MUTEX_INITIALIZER;
54 #endif
55
56 /**
57  * Global process-wide VLC object.
58  * Contains inter-instance data, such as the module cache and global mutexes.
59  */
60 static libvlc_global_data_t *p_root;
61
62 libvlc_global_data_t *vlc_global( void )
63 {
64     assert( i_initializations > 0 );
65     return p_root;
66 }
67
68 #ifndef NDEBUG
69 /**
70  * Object running the current thread
71  */
72 static vlc_threadvar_t thread_object_key;
73
74 vlc_object_t *vlc_threadobj (void)
75 {
76     return vlc_threadvar_get (&thread_object_key);
77 }
78 #endif
79
80 vlc_threadvar_t msg_context_global_key;
81
82 #if defined(LIBVLC_USE_PTHREAD)
83 static inline unsigned long vlc_threadid (void)
84 {
85      union { pthread_t th; unsigned long int i; } v = { };
86      v.th = pthread_self ();
87      return v.i;
88 }
89
90 #if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE)
91 # include <execinfo.h>
92 #endif
93
94 /*****************************************************************************
95  * vlc_thread_fatal: Report an error from the threading layer
96  *****************************************************************************
97  * This is mostly meant for debugging.
98  *****************************************************************************/
99 void vlc_pthread_fatal (const char *action, int error,
100                         const char *file, unsigned line)
101 {
102     fprintf (stderr, "LibVLC fatal error %s in thread %lu at %s:%u: %d\n",
103              action, vlc_threadid (), file, line, error);
104
105     /* Sometimes strerror_r() crashes too, so make sure we print an error
106      * message before we invoke it */
107 #ifdef __GLIBC__
108     /* Avoid the strerror_r() prototype brain damage in glibc */
109     errno = error;
110     fprintf (stderr, " Error message: %m at:\n");
111 #else
112     char buf[1000];
113     const char *msg;
114
115     switch (strerror_r (error, buf, sizeof (buf)))
116     {
117         case 0:
118             msg = buf;
119             break;
120         case ERANGE: /* should never happen */
121             msg = "unknwon (too big to display)";
122             break;
123         default:
124             msg = "unknown (invalid error number)";
125             break;
126     }
127     fprintf (stderr, " Error message: %s\n", msg);
128 #endif
129     fflush (stderr);
130
131 #ifdef HAVE_BACKTRACE
132     void *stack[20];
133     int len = backtrace (stack, sizeof (stack) / sizeof (stack[0]));
134     backtrace_symbols_fd (stack, len, 2);
135 #endif
136
137     abort ();
138 }
139 #else
140 void vlc_pthread_fatal (const char *action, int error,
141                         const char *file, unsigned line)
142 {
143     (void)action; (void)error; (void)file; (void)line;
144     abort();
145 }
146 #endif
147
148 /*****************************************************************************
149  * vlc_threads_init: initialize threads system
150  *****************************************************************************
151  * This function requires lazy initialization of a global lock in order to
152  * keep the library really thread-safe. Some architectures don't support this
153  * and thus do not guarantee the complete reentrancy.
154  *****************************************************************************/
155 int vlc_threads_init( void )
156 {
157     int i_ret = VLC_SUCCESS;
158
159     /* If we have lazy mutex initialization, use it. Otherwise, we just
160      * hope nothing wrong happens. */
161 #if defined( LIBVLC_USE_PTHREAD )
162     pthread_mutex_lock( &once_mutex );
163 #endif
164
165     if( i_initializations == 0 )
166     {
167         p_root = vlc_custom_create( (vlc_object_t *)NULL, sizeof( *p_root ),
168                                     VLC_OBJECT_GENERIC, "root" );
169         if( p_root == NULL )
170         {
171             i_ret = VLC_ENOMEM;
172             goto out;
173         }
174
175         /* We should be safe now. Do all the initialization stuff we want. */
176 #ifndef NDEBUG
177         vlc_threadvar_create( &thread_object_key, NULL );
178 #endif
179         vlc_threadvar_create( &msg_context_global_key, msg_StackDestroy );
180     }
181     i_initializations++;
182
183 out:
184     /* If we have lazy mutex initialization support, unlock the mutex.
185      * Otherwize, we are screwed. */
186 #if defined( LIBVLC_USE_PTHREAD )
187     pthread_mutex_unlock( &once_mutex );
188 #endif
189
190     return i_ret;
191 }
192
193 /*****************************************************************************
194  * vlc_threads_end: stop threads system
195  *****************************************************************************
196  * FIXME: This function is far from being threadsafe.
197  *****************************************************************************/
198 void vlc_threads_end( void )
199 {
200 #if defined( LIBVLC_USE_PTHREAD )
201     pthread_mutex_lock( &once_mutex );
202 #endif
203
204     assert( i_initializations > 0 );
205
206     if( i_initializations == 1 )
207     {
208         vlc_object_release( p_root );
209         vlc_threadvar_delete( &msg_context_global_key );
210 #ifndef NDEBUG
211         vlc_threadvar_delete( &thread_object_key );
212 #endif
213     }
214     i_initializations--;
215
216 #if defined( LIBVLC_USE_PTHREAD )
217     pthread_mutex_unlock( &once_mutex );
218 #endif
219 }
220
221 #if defined (__GLIBC__) && (__GLIBC_MINOR__ < 6)
222 /* This is not prototyped under glibc, though it exists. */
223 int pthread_mutexattr_setkind_np( pthread_mutexattr_t *attr, int kind );
224 #endif
225
226 /*****************************************************************************
227  * vlc_mutex_init: initialize a mutex
228  *****************************************************************************/
229 int vlc_mutex_init( vlc_mutex_t *p_mutex )
230 {
231 #if defined( LIBVLC_USE_PTHREAD )
232     pthread_mutexattr_t attr;
233     int                 i_result;
234
235     pthread_mutexattr_init( &attr );
236
237 # ifndef NDEBUG
238     /* Create error-checking mutex to detect problems more easily. */
239 #  if defined (__GLIBC__) && (__GLIBC_MINOR__ < 6)
240     pthread_mutexattr_setkind_np( &attr, PTHREAD_MUTEX_ERRORCHECK_NP );
241 #  else
242     pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_ERRORCHECK );
243 #  endif
244 # endif
245     i_result = pthread_mutex_init( p_mutex, &attr );
246     pthread_mutexattr_destroy( &attr );
247     return i_result;
248 #elif defined( UNDER_CE )
249     InitializeCriticalSection( &p_mutex->csection );
250     return 0;
251
252 #elif defined( WIN32 )
253     *p_mutex = CreateMutex( 0, FALSE, 0 );
254     return (*p_mutex != NULL) ? 0 : ENOMEM;
255
256 #elif defined( HAVE_KERNEL_SCHEDULER_H )
257     /* check the arguments and whether it's already been initialized */
258     if( p_mutex == NULL )
259     {
260         return B_BAD_VALUE;
261     }
262
263     if( p_mutex->init == 9999 )
264     {
265         return EALREADY;
266     }
267
268     p_mutex->lock = create_sem( 1, "BeMutex" );
269     if( p_mutex->lock < B_NO_ERROR )
270     {
271         return( -1 );
272     }
273
274     p_mutex->init = 9999;
275     return B_OK;
276
277 #endif
278 }
279
280 /*****************************************************************************
281  * vlc_mutex_init: initialize a recursive mutex (Do not use)
282  *****************************************************************************/
283 int vlc_mutex_init_recursive( vlc_mutex_t *p_mutex )
284 {
285 #if defined( LIBVLC_USE_PTHREAD )
286     pthread_mutexattr_t attr;
287     int                 i_result;
288
289     pthread_mutexattr_init( &attr );
290 #  if defined (__GLIBC__) && (__GLIBC_MINOR__ < 6)
291     pthread_mutexattr_setkind_np( &attr, PTHREAD_MUTEX_RECURSIVE_NP );
292 #  else
293     pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
294 #  endif
295     i_result = pthread_mutex_init( p_mutex, &attr );
296     pthread_mutexattr_destroy( &attr );
297     return( i_result );
298 #elif defined( WIN32 )
299     /* Create mutex returns a recursive mutex */
300     *p_mutex = CreateMutex( 0, FALSE, 0 );
301     return (*p_mutex != NULL) ? 0 : ENOMEM;
302 #else
303 # error Unimplemented!
304 #endif
305 }
306
307
308 /*****************************************************************************
309  * vlc_mutex_destroy: destroy a mutex, inner version
310  *****************************************************************************/
311 void __vlc_mutex_destroy( const char * psz_file, int i_line, vlc_mutex_t *p_mutex )
312 {
313 #if defined( LIBVLC_USE_PTHREAD )
314     int val = pthread_mutex_destroy( p_mutex );
315     VLC_THREAD_ASSERT ("destroying mutex");
316
317 #elif defined( UNDER_CE )
318     VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
319
320     DeleteCriticalSection( &p_mutex->csection );
321
322 #elif defined( WIN32 )
323     VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
324
325     CloseHandle( *p_mutex );
326
327 #elif defined( HAVE_KERNEL_SCHEDULER_H )
328     if( p_mutex->init == 9999 )
329         delete_sem( p_mutex->lock );
330
331     p_mutex->init = 0;
332
333 #endif
334 }
335
336 /*****************************************************************************
337  * vlc_cond_init: initialize a condition
338  *****************************************************************************/
339 int __vlc_cond_init( vlc_cond_t *p_condvar )
340 {
341 #if defined( LIBVLC_USE_PTHREAD )
342     pthread_condattr_t attr;
343     int ret;
344
345     ret = pthread_condattr_init (&attr);
346     if (ret)
347         return ret;
348
349 # if !defined (_POSIX_CLOCK_SELECTION)
350    /* Fairly outdated POSIX support (that was defined in 2001) */
351 #  define _POSIX_CLOCK_SELECTION (-1)
352 # endif
353 # if (_POSIX_CLOCK_SELECTION >= 0)
354     /* NOTE: This must be the same clock as the one in mtime.c */
355     pthread_condattr_setclock (&attr, CLOCK_MONOTONIC);
356 # endif
357
358     ret = pthread_cond_init (p_condvar, &attr);
359     pthread_condattr_destroy (&attr);
360     return ret;
361
362 #elif defined( UNDER_CE ) || defined( WIN32 )
363     /* Create an auto-reset event. */
364     *p_condvar = CreateEvent( NULL,   /* no security */
365                               FALSE,  /* auto-reset event */
366                               FALSE,  /* start non-signaled */
367                               NULL ); /* unnamed */
368     return *p_condvar ? 0 : ENOMEM;
369
370 #elif defined( HAVE_KERNEL_SCHEDULER_H )
371     if( !p_condvar )
372     {
373         return B_BAD_VALUE;
374     }
375
376     if( p_condvar->init == 9999 )
377     {
378         return EALREADY;
379     }
380
381     p_condvar->thread = -1;
382     p_condvar->init = 9999;
383     return 0;
384
385 #endif
386 }
387
388 /*****************************************************************************
389  * vlc_cond_destroy: destroy a condition, inner version
390  *****************************************************************************/
391 void __vlc_cond_destroy( const char * psz_file, int i_line, vlc_cond_t *p_condvar )
392 {
393 #if defined( LIBVLC_USE_PTHREAD )
394     int val = pthread_cond_destroy( p_condvar );
395     VLC_THREAD_ASSERT ("destroying condition");
396
397 #elif defined( UNDER_CE ) || defined( WIN32 )
398     VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
399
400     CloseHandle( *p_condvar );
401
402 #elif defined( HAVE_KERNEL_SCHEDULER_H )
403     p_condvar->init = 0;
404
405 #endif
406 }
407
408 /*****************************************************************************
409  * vlc_tls_create: create a thread-local variable
410  *****************************************************************************/
411 int vlc_threadvar_create( vlc_threadvar_t *p_tls, void (*destr) (void *) )
412 {
413     int i_ret;
414
415 #if defined( LIBVLC_USE_PTHREAD )
416     i_ret =  pthread_key_create( p_tls, destr );
417 #elif defined( UNDER_CE )
418     i_ret = ENOSYS;
419 #elif defined( WIN32 )
420     /* FIXME: remember/use the destr() callback and stop leaking whatever */
421     *p_tls = TlsAlloc();
422     i_ret = (*p_tls == TLS_OUT_OF_INDEXES) ? EAGAIN : 0;
423 #else
424 # error Unimplemented!
425 #endif
426     return i_ret;
427 }
428
429 void vlc_threadvar_delete (vlc_threadvar_t *p_tls)
430 {
431 #if defined( LIBVLC_USE_PTHREAD )
432     pthread_key_delete (*p_tls);
433 #elif defined( UNDER_CE )
434 #elif defined( WIN32 )
435     TlsFree (*p_tls);
436 #else
437 # error Unimplemented!
438 #endif
439 }
440
441 #if defined (LIBVLC_USE_PTHREAD)
442 #elif defined (WIN32)
443 static unsigned __stdcall vlc_entry (void *data)
444 {
445     vlc_thread_t self = data;
446     self->data = self->entry (self->data);
447     return 0;
448 }
449 #endif
450
451 /**
452  * Creates and starts new thread.
453  *
454  * @param p_handle [OUT] pointer to write the handle of the created thread to
455  * @param entry entry point for the thread
456  * @param data data parameter given to the entry point
457  * @param priority thread priority value
458  * @return 0 on success, a standard error code on error.
459  */
460 int vlc_clone (vlc_thread_t *p_handle, void * (*entry) (void *), void *data,
461                int priority)
462 {
463     int ret;
464
465 #if defined( LIBVLC_USE_PTHREAD )
466     pthread_attr_t attr;
467     pthread_attr_init (&attr);
468
469     /* Block the signals that signals interface plugin handles.
470      * If the LibVLC caller wants to handle some signals by itself, it should
471      * block these before whenever invoking LibVLC. And it must obviously not
472      * start the VLC signals interface plugin.
473      *
474      * LibVLC will normally ignore any interruption caused by an asynchronous
475      * signal during a system call. But there may well be some buggy cases
476      * where it fails to handle EINTR (bug reports welcome). Some underlying
477      * libraries might also not handle EINTR properly.
478      */
479     sigset_t oldset;
480     {
481         sigset_t set;
482         sigemptyset (&set);
483         sigdelset (&set, SIGHUP);
484         sigaddset (&set, SIGINT);
485         sigaddset (&set, SIGQUIT);
486         sigaddset (&set, SIGTERM);
487
488         sigaddset (&set, SIGPIPE); /* We don't want this one, really! */
489         pthread_sigmask (SIG_BLOCK, &set, &oldset);
490     }
491     {
492         struct sched_param sp = { .sched_priority = priority, };
493         int policy;
494
495         if (sp.sched_priority <= 0)
496             sp.sched_priority += sched_get_priority_max (policy = SCHED_OTHER);
497         else
498             sp.sched_priority += sched_get_priority_min (policy = SCHED_RR);
499
500         pthread_attr_setschedpolicy (&attr, policy);
501         pthread_attr_setschedparam (&attr, &sp);
502     }
503
504     ret = pthread_create (p_handle, &attr, entry, data);
505     pthread_sigmask (SIG_SETMASK, &oldset, NULL);
506     pthread_attr_destroy (&attr);
507
508 #elif defined( WIN32 ) || defined( UNDER_CE )
509     /* When using the MSVCRT C library you have to use the _beginthreadex
510      * function instead of CreateThread, otherwise you'll end up with
511      * memory leaks and the signal functions not working (see Microsoft
512      * Knowledge Base, article 104641) */
513     HANDLE hThread;
514     vlc_thread_t th = malloc (sizeof (*p_handle));
515
516     if (th == NULL)
517         return ENOMEM;
518
519     th->data = data;
520     th->entry = entry;
521 #if defined( UNDER_CE )
522     hThread = CreateThread (NULL, 0, vlc_entry, th, CREATE_SUSPENDED, NULL);
523 #else
524     hThread = (HANDLE)(uintptr_t)
525         _beginthreadex (NULL, 0, vlc_entry, th, CREATE_SUSPENDED, NULL);
526 #endif
527
528     if (hThread)
529     {
530         ResumeThread (hThread);
531         th->handle = hThread;
532         if (priority)
533             SetThreadPriority (hThread, priority);
534         ret = 0;
535     }
536     else
537     {
538         ret = errno;
539         free (th);
540         th = NULL;
541     }
542     *p_handle = th;
543
544 #elif defined( HAVE_KERNEL_SCHEDULER_H )
545     *p_handle = spawn_thread( entry, psz_name, priority, data );
546     ret = resume_thread( *p_handle );
547
548 #endif
549     return ret;
550 }
551
552 /**
553  * Waits for a thread to complete (if needed), and destroys it.
554  * @param handle thread handle
555  * @param p_result [OUT] pointer to write the thread return value or NULL
556  * @return 0 on success, a standard error code otherwise.
557  */
558 int vlc_join (vlc_thread_t handle, void **result)
559 {
560 #if defined( LIBVLC_USE_PTHREAD )
561     return pthread_join (handle, result);
562
563 #elif defined( UNDER_CE ) || defined( WIN32 )
564     HANDLE hThread;
565
566     /*
567     ** object will close its thread handle when destroyed, duplicate it here
568     ** to be on the safe side
569     */
570     if (!DuplicateHandle (GetCurrentProcess (), handle->handle,
571                           GetCurrentProcess(), &hThread, 0, FALSE,
572                           DUPLICATE_SAME_ACCESS))
573         return GetLastError (); /* FIXME: errno */
574
575     WaitForSingleObject (hThread, INFINITE);
576     CloseHandle (hThread);
577     if (result)
578         *result = handle->data;
579     free (handle);
580     return 0;
581
582 #elif defined( HAVE_KERNEL_SCHEDULER_H )
583     int32_t exit_value;
584     ret = (B_OK == wait_for_thread( p_priv->thread_id, &exit_value ));
585     if( !ret && result )
586         *result = (void *)exit_value;
587
588     return ret;
589 #endif
590 }
591
592
593 struct vlc_thread_boot
594 {
595     void * (*entry) (vlc_object_t *);
596     vlc_object_t *object;
597 };
598
599 static void *thread_entry (void *data)
600 {
601     vlc_object_t *obj = ((struct vlc_thread_boot *)data)->object;
602     void *(*func) (vlc_object_t *) = ((struct vlc_thread_boot *)data)->entry;
603
604     free (data);
605 #ifndef NDEBUG
606     vlc_threadvar_set (&thread_object_key, obj);
607 #endif
608     msg_Dbg (obj, "thread started");
609     func (obj);
610     msg_Dbg (obj, "thread ended");
611
612     return NULL;
613 }
614
615 /*****************************************************************************
616  * vlc_thread_create: create a thread, inner version
617  *****************************************************************************
618  * Note that i_priority is only taken into account on platforms supporting
619  * userland real-time priority threads.
620  *****************************************************************************/
621 int __vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line,
622                          const char *psz_name, void * ( *func ) ( vlc_object_t * ),
623                          int i_priority, bool b_wait )
624 {
625     int i_ret;
626     vlc_object_internals_t *p_priv = vlc_internals( p_this );
627
628     struct vlc_thread_boot *boot = malloc (sizeof (*boot));
629     if (boot == NULL)
630         return errno;
631     boot->entry = func;
632     boot->object = p_this;
633
634     vlc_object_lock( p_this );
635
636     /* Make sure we don't re-create a thread if the object has already one */
637     assert( !p_priv->b_thread );
638
639 #if defined( LIBVLC_USE_PTHREAD )
640 #ifndef __APPLE__
641     if( config_GetInt( p_this, "rt-priority" ) > 0 )
642 #endif
643     {
644         /* Hack to avoid error msg */
645         if( config_GetType( p_this, "rt-offset" ) )
646             i_priority += config_GetInt( p_this, "rt-offset" );
647     }
648 #endif
649
650     i_ret = vlc_clone( &p_priv->thread_id, thread_entry, boot, i_priority );
651     if( i_ret == 0 )
652     {
653         if( b_wait )
654         {
655             msg_Dbg( p_this, "waiting for thread initialization" );
656             vlc_object_wait( p_this );
657         }
658
659         p_priv->b_thread = true;
660         msg_Dbg( p_this, "thread %lu (%s) created at priority %d (%s:%d)",
661                  (unsigned long)p_priv->thread_id, psz_name, i_priority,
662                  psz_file, i_line );
663     }
664     else
665     {
666         errno = i_ret;
667         msg_Err( p_this, "%s thread could not be created at %s:%d (%m)",
668                          psz_name, psz_file, i_line );
669     }
670
671     vlc_object_unlock( p_this );
672     return i_ret;
673 }
674
675 /*****************************************************************************
676  * vlc_thread_set_priority: set the priority of the current thread when we
677  * couldn't set it in vlc_thread_create (for instance for the main thread)
678  *****************************************************************************/
679 int __vlc_thread_set_priority( vlc_object_t *p_this, const char * psz_file,
680                                int i_line, int i_priority )
681 {
682     vlc_object_internals_t *p_priv = vlc_internals( p_this );
683
684     if( !p_priv->b_thread )
685     {
686         msg_Err( p_this, "couldn't set priority of non-existent thread" );
687         return ESRCH;
688     }
689
690 #if defined( LIBVLC_USE_PTHREAD )
691 # ifndef __APPLE__
692     if( config_GetInt( p_this, "rt-priority" ) > 0 )
693 # endif
694     {
695         int i_error, i_policy;
696         struct sched_param param;
697
698         memset( &param, 0, sizeof(struct sched_param) );
699         if( config_GetType( p_this, "rt-offset" ) )
700             i_priority += config_GetInt( p_this, "rt-offset" );
701         if( i_priority <= 0 )
702         {
703             param.sched_priority = (-1) * i_priority;
704             i_policy = SCHED_OTHER;
705         }
706         else
707         {
708             param.sched_priority = i_priority;
709             i_policy = SCHED_RR;
710         }
711         if( (i_error = pthread_setschedparam( p_priv->thread_id,
712                                               i_policy, &param )) )
713         {
714             errno = i_error;
715             msg_Warn( p_this, "couldn't set thread priority (%s:%d): %m",
716                       psz_file, i_line );
717             i_priority = 0;
718         }
719     }
720
721 #elif defined( WIN32 ) || defined( UNDER_CE )
722     VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
723
724     if( !SetThreadPriority(p_priv->thread_id->handle, i_priority) )
725     {
726         msg_Warn( p_this, "couldn't set a faster priority" );
727         return 1;
728     }
729
730 #endif
731
732     return 0;
733 }
734
735 /*****************************************************************************
736  * vlc_thread_join: wait until a thread exits, inner version
737  *****************************************************************************/
738 void __vlc_thread_join( vlc_object_t *p_this, const char * psz_file, int i_line )
739 {
740     vlc_object_internals_t *p_priv = vlc_internals( p_this );
741     int i_ret = 0;
742
743 #if defined( LIBVLC_USE_PTHREAD )
744     /* Make sure we do return if we are calling vlc_thread_join()
745      * from the joined thread */
746     if (pthread_equal (pthread_self (), p_priv->thread_id))
747     {
748         msg_Warn (p_this, "joining the active thread (VLC might crash)");
749         i_ret = pthread_detach (p_priv->thread_id);
750     }
751     else
752         i_ret = vlc_join (p_priv->thread_id, NULL);
753
754 #elif defined( UNDER_CE ) || defined( WIN32 )
755     HANDLE hThread;
756     FILETIME create_ft, exit_ft, kernel_ft, user_ft;
757     int64_t real_time, kernel_time, user_time;
758
759     if( ! DuplicateHandle(GetCurrentProcess(),
760             p_priv->thread_id->handle,
761             GetCurrentProcess(),
762             &hThread,
763             0,
764             FALSE,
765             DUPLICATE_SAME_ACCESS) )
766     {
767         p_priv->b_thread = false;
768         i_ret = GetLastError();
769         goto error;
770     }
771
772     vlc_join( p_priv->thread_id, NULL );
773
774     if( GetThreadTimes( hThread, &create_ft, &exit_ft, &kernel_ft, &user_ft ) )
775     {
776         real_time =
777           ((((int64_t)exit_ft.dwHighDateTime)<<32)| exit_ft.dwLowDateTime) -
778           ((((int64_t)create_ft.dwHighDateTime)<<32)| create_ft.dwLowDateTime);
779         real_time /= 10;
780
781         kernel_time =
782           ((((int64_t)kernel_ft.dwHighDateTime)<<32)|
783            kernel_ft.dwLowDateTime) / 10;
784
785         user_time =
786           ((((int64_t)user_ft.dwHighDateTime)<<32)|
787            user_ft.dwLowDateTime) / 10;
788
789         msg_Dbg( p_this, "thread times: "
790                  "real %"PRId64"m%fs, kernel %"PRId64"m%fs, user %"PRId64"m%fs",
791                  real_time/60/1000000,
792                  (double)((real_time%(60*1000000))/1000000.0),
793                  kernel_time/60/1000000,
794                  (double)((kernel_time%(60*1000000))/1000000.0),
795                  user_time/60/1000000,
796                  (double)((user_time%(60*1000000))/1000000.0) );
797     }
798     CloseHandle( hThread );
799 error:
800
801 #else
802     i_ret = vlc_join( p_priv->thread_id, NULL );
803
804 #endif
805
806     if( i_ret )
807     {
808         errno = i_ret;
809         msg_Err( p_this, "thread_join(%lu) failed at %s:%d (%m)",
810                          (unsigned long)p_priv->thread_id, psz_file, i_line );
811     }
812     else
813         msg_Dbg( p_this, "thread %lu joined (%s:%d)",
814                          (unsigned long)p_priv->thread_id, psz_file, i_line );
815
816     p_priv->b_thread = false;
817 }