]> git.sesse.net Git - vlc/blob - src/misc/threads.c
threads: win32, make sure only object owning a thread can close its handle when objec...
[vlc] / src / misc / threads.c
1 /*****************************************************************************
2  * threads.c : threads implementation for the VideoLAN client
3  *****************************************************************************
4  * Copyright (C) 1999-2007 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 #include <vlc/vlc.h>
28
29 #include <stdlib.h>
30 #include "libvlc.h"
31
32 #define VLC_THREADS_UNINITIALIZED  0
33 #define VLC_THREADS_PENDING        1
34 #define VLC_THREADS_ERROR          2
35 #define VLC_THREADS_READY          3
36
37 /*****************************************************************************
38  * Global mutex for lazy initialization of the threads system
39  *****************************************************************************/
40 static volatile unsigned i_initializations = 0;
41 static volatile int i_status = VLC_THREADS_UNINITIALIZED;
42 static vlc_object_t *p_root;
43
44 #if defined( PTH_INIT_IN_PTH_H )
45 #elif defined( ST_INIT_IN_ST_H )
46 #elif defined( UNDER_CE )
47 #elif defined( WIN32 )
48
49 /* following is only available on NT/2000/XP and above */
50 static SIGNALOBJECTANDWAIT pf_SignalObjectAndWait = NULL;
51
52 /*
53 ** On Windows NT/2K/XP we use a slow mutex implementation but which
54 ** allows us to correctly implement condition variables.
55 ** You can also use the faster Win9x implementation but you might
56 ** experience problems with it.
57 */
58 static vlc_bool_t          b_fast_mutex = VLC_FALSE;
59 /*
60 ** On Windows 9x/Me you can use a fast but incorrect condition variables
61 ** implementation (more precisely there is a possibility for a race
62 ** condition to happen).
63 ** However it is possible to use slower alternatives which are more robust.
64 ** Currently you can choose between implementation 0 (which is the
65 ** fastest but slightly incorrect), 1 (default) and 2.
66 */
67 static int i_win9x_cv = 1;
68
69 #elif defined( HAVE_KERNEL_SCHEDULER_H )
70 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
71 static pthread_mutex_t once_mutex = PTHREAD_MUTEX_INITIALIZER;
72 #elif defined( HAVE_CTHREADS_H )
73 #endif
74
75 vlc_threadvar_t msg_context_global_key;
76
77 /*****************************************************************************
78  * vlc_threads_init: initialize threads system
79  *****************************************************************************
80  * This function requires lazy initialization of a global lock in order to
81  * keep the library really thread-safe. Some architectures don't support this
82  * and thus do not guarantee the complete reentrancy.
83  *****************************************************************************/
84 int __vlc_threads_init( vlc_object_t *p_this )
85 {
86     libvlc_global_data_t *p_libvlc_global = (libvlc_global_data_t *)p_this;
87     int i_ret = VLC_SUCCESS;
88
89     /* If we have lazy mutex initialization, use it. Otherwise, we just
90      * hope nothing wrong happens. */
91 #if defined( PTH_INIT_IN_PTH_H )
92 #elif defined( ST_INIT_IN_ST_H )
93 #elif defined( UNDER_CE )
94 #elif defined( WIN32 )
95     if( IsDebuggerPresent() )
96     {
97         /* SignalObjectAndWait() is problematic under a debugger */
98         b_fast_mutex = VLC_TRUE;
99         i_win9x_cv = 1;
100     }
101 #elif defined( HAVE_KERNEL_SCHEDULER_H )
102 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
103     pthread_mutex_lock( &once_mutex );
104 #elif defined( HAVE_CTHREADS_H )
105 #endif
106
107     if( i_status == VLC_THREADS_UNINITIALIZED )
108     {
109         i_status = VLC_THREADS_PENDING;
110
111         /* We should be safe now. Do all the initialization stuff we want. */
112         p_libvlc_global->b_ready = VLC_FALSE;
113
114 #if defined( PTH_INIT_IN_PTH_H )
115         i_ret = ( pth_init() == FALSE );
116
117 #elif defined( ST_INIT_IN_ST_H )
118         i_ret = st_init();
119
120 #elif defined( UNDER_CE )
121         /* Nothing to initialize */
122
123 #elif defined( WIN32 )
124         /* Dynamically get the address of SignalObjectAndWait */
125         if( GetVersion() < 0x80000000 )
126         {
127             HINSTANCE hInstLib;
128
129             /* We are running on NT/2K/XP, we can use SignalObjectAndWait */
130             hInstLib = LoadLibrary( "kernel32" );
131             if( hInstLib )
132             {
133                 pf_SignalObjectAndWait =
134                     (SIGNALOBJECTANDWAIT)GetProcAddress( hInstLib,
135                                                      "SignalObjectAndWait" );
136             }
137         }
138
139 #elif defined( HAVE_KERNEL_SCHEDULER_H )
140 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
141 #elif defined( HAVE_CTHREADS_H )
142 #endif
143
144         p_root = vlc_object_create( p_libvlc_global, VLC_OBJECT_GLOBAL );
145         if( p_root == NULL )
146             i_ret = VLC_ENOMEM;
147
148         if( i_ret )
149         {
150             i_status = VLC_THREADS_ERROR;
151         }
152         else
153         {
154             i_initializations++;
155             i_status = VLC_THREADS_READY;
156         }
157
158         vlc_threadvar_create( p_root, &msg_context_global_key );
159     }
160     else
161     {
162         /* Just increment the initialization count */
163         i_initializations++;
164     }
165
166     /* If we have lazy mutex initialization support, unlock the mutex;
167      * otherwize, do a naive wait loop. */
168 #if defined( PTH_INIT_IN_PTH_H )
169     while( i_status == VLC_THREADS_PENDING ) msleep( THREAD_SLEEP );
170 #elif defined( ST_INIT_IN_ST_H )
171     while( i_status == VLC_THREADS_PENDING ) msleep( THREAD_SLEEP );
172 #elif defined( UNDER_CE )
173     while( i_status == VLC_THREADS_PENDING ) msleep( THREAD_SLEEP );
174 #elif defined( WIN32 )
175     while( i_status == VLC_THREADS_PENDING ) msleep( THREAD_SLEEP );
176 #elif defined( HAVE_KERNEL_SCHEDULER_H )
177     while( i_status == VLC_THREADS_PENDING ) msleep( THREAD_SLEEP );
178 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
179     pthread_mutex_unlock( &once_mutex );
180 #elif defined( HAVE_CTHREADS_H )
181     while( i_status == VLC_THREADS_PENDING ) msleep( THREAD_SLEEP );
182 #endif
183
184     if( i_status != VLC_THREADS_READY )
185     {
186         return VLC_ETHREAD;
187     }
188
189     return i_ret;
190 }
191
192 /*****************************************************************************
193  * vlc_threads_end: stop threads system
194  *****************************************************************************
195  * FIXME: This function is far from being threadsafe.
196  *****************************************************************************/
197 int __vlc_threads_end( vlc_object_t *p_this )
198 {
199     (void)p_this;
200 #if defined( PTH_INIT_IN_PTH_H )
201 #elif defined( ST_INIT_IN_ST_H )
202 #elif defined( UNDER_CE )
203 #elif defined( WIN32 )
204 #elif defined( HAVE_KERNEL_SCHEDULER_H )
205 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
206     pthread_mutex_lock( &once_mutex );
207 #elif defined( HAVE_CTHREADS_H )
208 #endif
209
210     if( i_initializations == 0 )
211         return VLC_EGENERIC;
212
213     i_initializations--;
214     if( i_initializations == 0 )
215     {
216         i_status = VLC_THREADS_UNINITIALIZED;
217         vlc_object_destroy( p_root );
218     }
219
220 #if defined( PTH_INIT_IN_PTH_H )
221     if( i_initializations == 0 )
222     {
223         return ( pth_kill() == FALSE );
224     }
225
226 #elif defined( ST_INIT_IN_ST_H )
227 #elif defined( UNDER_CE )
228 #elif defined( WIN32 )
229 #elif defined( HAVE_KERNEL_SCHEDULER_H )
230 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
231     pthread_mutex_unlock( &once_mutex );
232 #elif defined( HAVE_CTHREADS_H )
233 #endif
234     return VLC_SUCCESS;
235 }
236
237 /*****************************************************************************
238  * vlc_mutex_init: initialize a mutex
239  *****************************************************************************/
240 int __vlc_mutex_init( vlc_object_t *p_this, vlc_mutex_t *p_mutex )
241 {
242     p_mutex->p_this = p_this;
243
244 #if defined( PTH_INIT_IN_PTH_H )
245     return ( pth_mutex_init( &p_mutex->mutex ) == FALSE );
246
247 #elif defined( ST_INIT_IN_ST_H )
248     p_mutex->mutex = st_mutex_new();
249     return ( p_mutex->mutex == NULL ) ? errno : 0;
250
251 #elif defined( UNDER_CE )
252     InitializeCriticalSection( &p_mutex->csection );
253     return 0;
254
255 #elif defined( WIN32 )
256     /* We use mutexes on WinNT/2K/XP because we can use the SignalObjectAndWait
257      * function and have a 100% correct vlc_cond_wait() implementation.
258      * As this function is not available on Win9x, we can use the faster
259      * CriticalSections */
260     if( pf_SignalObjectAndWait && !b_fast_mutex )
261     {
262         /* We are running on NT/2K/XP, we can use SignalObjectAndWait */
263         p_mutex->mutex = CreateMutex( 0, FALSE, 0 );
264         return ( p_mutex->mutex != NULL ? 0 : 1 );
265     }
266     else
267     {
268         p_mutex->mutex = NULL;
269         InitializeCriticalSection( &p_mutex->csection );
270         return 0;
271     }
272
273 #elif defined( HAVE_KERNEL_SCHEDULER_H )
274     /* check the arguments and whether it's already been initialized */
275     if( p_mutex == NULL )
276     {
277         return B_BAD_VALUE;
278     }
279
280     if( p_mutex->init == 9999 )
281     {
282         return EALREADY;
283     }
284
285     p_mutex->lock = create_sem( 1, "BeMutex" );
286     if( p_mutex->lock < B_NO_ERROR )
287     {
288         return( -1 );
289     }
290
291     p_mutex->init = 9999;
292     return B_OK;
293
294 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
295 #   if defined(DEBUG) && defined(SYS_LINUX)
296     {
297         /* Create error-checking mutex to detect problems more easily. */
298         pthread_mutexattr_t attr;
299         int                 i_result;
300
301         pthread_mutexattr_init( &attr );
302         pthread_mutexattr_setkind_np( &attr, PTHREAD_MUTEX_ERRORCHECK_NP );
303         i_result = pthread_mutex_init( &p_mutex->mutex, &attr );
304         pthread_mutexattr_destroy( &attr );
305         return( i_result );
306     }
307 #   endif
308     return pthread_mutex_init( &p_mutex->mutex, NULL );
309
310 #elif defined( HAVE_CTHREADS_H )
311     mutex_init( p_mutex );
312     return 0;
313
314 #endif
315 }
316
317 /*****************************************************************************
318  * vlc_mutex_destroy: destroy a mutex, inner version
319  *****************************************************************************/
320 int __vlc_mutex_destroy( const char * psz_file, int i_line, vlc_mutex_t *p_mutex )
321 {
322     int i_result;
323     /* In case of error : */
324     int i_thread = -1;
325     const char * psz_error = "";
326
327 #if defined( PTH_INIT_IN_PTH_H )
328     return 0;
329
330 #elif defined( ST_INIT_IN_ST_H )
331     i_result = st_mutex_destroy( p_mutex->mutex );
332
333 #elif defined( UNDER_CE )
334     DeleteCriticalSection( &p_mutex->csection );
335     return 0;
336
337 #elif defined( WIN32 )
338     if( p_mutex->mutex )
339     {
340         CloseHandle( p_mutex->mutex );
341     }
342     else
343     {
344         DeleteCriticalSection( &p_mutex->csection );
345     }
346     return 0;
347
348 #elif defined( HAVE_KERNEL_SCHEDULER_H )
349     if( p_mutex->init == 9999 )
350     {
351         delete_sem( p_mutex->lock );
352     }
353
354     p_mutex->init = 0;
355     return B_OK;
356
357 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
358     i_result = pthread_mutex_destroy( &p_mutex->mutex );
359     if( i_result )
360     {
361         i_thread = CAST_PTHREAD_TO_INT(pthread_self());
362         psz_error = strerror(i_result);
363     }
364
365 #elif defined( HAVE_CTHREADS_H )
366     return 0;
367
368 #endif
369
370     if( i_result )
371     {
372         msg_Err( p_mutex->p_this,
373                  "thread %d: mutex_destroy failed at %s:%d (%d:%s)",
374                  i_thread, psz_file, i_line, i_result, psz_error );
375     }
376     return i_result;
377 }
378
379 /*****************************************************************************
380  * vlc_cond_init: initialize a condition
381  *****************************************************************************/
382 int __vlc_cond_init( vlc_object_t *p_this, vlc_cond_t *p_condvar )
383 {
384     p_condvar->p_this = p_this;
385
386 #if defined( PTH_INIT_IN_PTH_H )
387     return ( pth_cond_init( &p_condvar->cond ) == FALSE );
388
389 #elif defined( ST_INIT_IN_ST_H )
390     p_condvar->cond = st_cond_new();
391     return ( p_condvar->cond == NULL ) ? errno : 0;
392
393 #elif defined( UNDER_CE )
394     /* Initialize counter */
395     p_condvar->i_waiting_threads = 0;
396
397     /* Create an auto-reset event. */
398     p_condvar->event = CreateEvent( NULL,   /* no security */
399                                     FALSE,  /* auto-reset event */
400                                     FALSE,  /* start non-signaled */
401                                     NULL ); /* unnamed */
402     return !p_condvar->event;
403
404 #elif defined( WIN32 )
405     /* Initialize counter */
406     p_condvar->i_waiting_threads = 0;
407
408     /* Misc init */
409     p_condvar->i_win9x_cv = i_win9x_cv;
410     p_condvar->SignalObjectAndWait = pf_SignalObjectAndWait;
411
412     if( (p_condvar->SignalObjectAndWait && !b_fast_mutex)
413         || p_condvar->i_win9x_cv == 0 )
414     {
415         /* Create an auto-reset event. */
416         p_condvar->event = CreateEvent( NULL,   /* no security */
417                                         FALSE,  /* auto-reset event */
418                                         FALSE,  /* start non-signaled */
419                                         NULL ); /* unnamed */
420
421         p_condvar->semaphore = NULL;
422         return !p_condvar->event;
423     }
424     else
425     {
426         p_condvar->semaphore = CreateSemaphore( NULL,       /* no security */
427                                                 0,          /* initial count */
428                                                 0x7fffffff, /* max count */
429                                                 NULL );     /* unnamed */
430
431         if( p_condvar->i_win9x_cv == 1 )
432             /* Create a manual-reset event initially signaled. */
433             p_condvar->event = CreateEvent( NULL, TRUE, TRUE, NULL );
434         else
435             /* Create a auto-reset event. */
436             p_condvar->event = CreateEvent( NULL, FALSE, FALSE, NULL );
437
438         InitializeCriticalSection( &p_condvar->csection );
439
440         return !p_condvar->semaphore || !p_condvar->event;
441     }
442
443 #elif defined( HAVE_KERNEL_SCHEDULER_H )
444     if( !p_condvar )
445     {
446         return B_BAD_VALUE;
447     }
448
449     if( p_condvar->init == 9999 )
450     {
451         return EALREADY;
452     }
453
454     p_condvar->thread = -1;
455     p_condvar->init = 9999;
456     return 0;
457
458 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
459     return pthread_cond_init( &p_condvar->cond, NULL );
460
461 #elif defined( HAVE_CTHREADS_H )
462     /* condition_init() */
463     spin_lock_init( &p_condvar->lock );
464     cthread_queue_init( &p_condvar->queue );
465     p_condvar->name = 0;
466     p_condvar->implications = 0;
467
468     return 0;
469
470 #endif
471 }
472
473 /*****************************************************************************
474  * vlc_cond_destroy: destroy a condition, inner version
475  *****************************************************************************/
476 int __vlc_cond_destroy( const char * psz_file, int i_line, vlc_cond_t *p_condvar )
477 {
478     int i_result;
479     /* In case of error : */
480     int i_thread = -1;
481     const char * psz_error = "";
482
483 #if defined( PTH_INIT_IN_PTH_H )
484     return 0;
485
486 #elif defined( ST_INIT_IN_ST_H )
487     i_result = st_cond_destroy( p_condvar->cond );
488
489 #elif defined( UNDER_CE )
490     i_result = !CloseHandle( p_condvar->event );
491
492 #elif defined( WIN32 )
493     if( !p_condvar->semaphore )
494         i_result = !CloseHandle( p_condvar->event );
495     else
496         i_result = !CloseHandle( p_condvar->event )
497           || !CloseHandle( p_condvar->semaphore );
498
499     if( p_condvar->semaphore != NULL )
500                 DeleteCriticalSection( &p_condvar->csection );
501
502 #elif defined( HAVE_KERNEL_SCHEDULER_H )
503     p_condvar->init = 0;
504     return 0;
505
506 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
507     i_result = pthread_cond_destroy( &p_condvar->cond );
508     if( i_result )
509     {
510         i_thread = CAST_PTHREAD_TO_INT(pthread_self());
511         psz_error = strerror(i_result);
512     }
513
514 #elif defined( HAVE_CTHREADS_H )
515     return 0;
516
517 #endif
518
519     if( i_result )
520     {
521         msg_Err( p_condvar->p_this,
522                  "thread %d: cond_destroy failed at %s:%d (%d:%s)",
523                  i_thread, psz_file, i_line, i_result, psz_error );
524     }
525     return i_result;
526 }
527
528 /*****************************************************************************
529  * vlc_tls_create: create a thread-local variable
530  *****************************************************************************/
531 int __vlc_threadvar_create( vlc_object_t *p_this, vlc_threadvar_t *p_tls )
532 {
533     int i_ret = -1;
534     (void)p_this;
535 #if defined( PTH_INIT_IN_PTH_H )
536     i_ret = pth_key_create( &p_tls->handle, NULL );
537 #elif defined( HAVE_KERNEL_SCHEDULER_H )
538     msg_Err( p_this, "TLS not implemented" );
539     i_ret VLC_EGENERIC;
540 #elif defined( ST_INIT_IN_ST_H )
541     i_ret = st_key_create( &p_tls->handle, NULL );
542 #elif defined( UNDER_CE ) || defined( WIN32 )
543 #elif defined( WIN32 )
544     p_tls->handle = TlsAlloc();
545     i_ret = !( p_tls->handle == 0xFFFFFFFF );
546
547 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
548     i_ret =  pthread_key_create( &p_tls->handle, NULL );
549 #elif defined( HAVE_CTHREADS_H )
550     i_ret = cthread_keycreate( &p_tls-handle );
551 #endif
552     return i_ret;
553 }
554
555 /*****************************************************************************
556  * vlc_thread_create: create a thread, inner version
557  *****************************************************************************
558  * Note that i_priority is only taken into account on platforms supporting
559  * userland real-time priority threads.
560  *****************************************************************************/
561 int __vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line,
562                          const char *psz_name, void * ( *func ) ( void * ),
563                          int i_priority, vlc_bool_t b_wait )
564 {
565     int i_ret;
566     void *p_data = (void *)p_this;
567     vlc_object_internals_t *p_priv = p_this->p_internals;
568
569     vlc_mutex_lock( &p_this->object_lock );
570
571 #if defined( PTH_INIT_IN_PTH_H )
572     p_priv->thread_id = pth_spawn( PTH_ATTR_DEFAULT, func, p_data );
573     i_ret = p_priv->thread_id == NULL;
574
575 #elif defined( ST_INIT_IN_ST_H )
576     p_priv->thread_id = st_thread_create( func, p_data, 1, 0 );
577     i_ret = 0;
578
579 #elif defined( WIN32 ) || defined( UNDER_CE )
580     {
581         /* When using the MSVCRT C library you have to use the _beginthreadex
582          * function instead of CreateThread, otherwise you'll end up with
583          * memory leaks and the signal functions not working (see Microsoft
584          * Knowledge Base, article 104641) */
585 #if defined( UNDER_CE )
586         DWORD  threadId;
587         HANDLE hThread = CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)func,
588                                       (LPVOID)p_data, CREATE_SUSPENDED,
589                                       &threadId );
590 #else
591         unsigned threadId;
592         uintptr_t hThread = _beginthreadex( NULL, 0,
593                                             (LPTHREAD_START_ROUTINE)func,
594                                             (void*)p_data, CREATE_SUSPENDED,
595                                             &threadId );
596 #endif
597         p_priv->thread_id.id = (DWORD)threadId;
598         p_priv->thread_id.hThread = (HANDLE)hThread;
599         ResumeThread((HANDLE)hThread);
600     }
601
602     i_ret = ( p_priv->thread_id.hThread ? 0 : 1 );
603
604     if( i_ret && i_priority )
605     {
606         if( !SetThreadPriority(p_priv->thread_id.hThread, i_priority) )
607         {
608             msg_Warn( p_this, "couldn't set a faster priority" );
609             i_priority = 0;
610         }
611     }
612
613 #elif defined( HAVE_KERNEL_SCHEDULER_H )
614     p_priv->thread_id = spawn_thread( (thread_func)func, psz_name,
615                                       i_priority, p_data );
616     i_ret = resume_thread( p_priv->thread_id );
617
618 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
619     i_ret = pthread_create( &p_priv->thread_id, NULL, func, p_data );
620
621 #ifndef __APPLE__
622     if( config_GetInt( p_this, "rt-priority" ) )
623 #endif
624     {
625         int i_error, i_policy;
626         struct sched_param param;
627
628         memset( &param, 0, sizeof(struct sched_param) );
629         if( config_GetType( p_this, "rt-offset" ) )
630         {
631             i_priority += config_GetInt( p_this, "rt-offset" );
632         }
633         if( i_priority <= 0 )
634         {
635             param.sched_priority = (-1) * i_priority;
636             i_policy = SCHED_OTHER;
637         }
638         else
639         {
640             param.sched_priority = i_priority;
641             i_policy = SCHED_RR;
642         }
643         if( (i_error = pthread_setschedparam( p_priv->thread_id,
644                                                i_policy, &param )) )
645         {
646             msg_Warn( p_this, "couldn't set thread priority (%s:%d): %s",
647                       psz_file, i_line, strerror(i_error) );
648             i_priority = 0;
649         }
650     }
651 #ifndef __APPLE__
652     else
653     {
654         i_priority = 0;
655     }
656 #endif
657
658 #elif defined( HAVE_CTHREADS_H )
659     p_priv->thread_id = cthread_fork( (cthread_fn_t)func, (any_t)p_data );
660     i_ret = 0;
661
662 #endif
663
664     if( i_ret == 0 )
665     {
666         if( b_wait )
667         {
668             msg_Dbg( p_this, "waiting for thread completion" );
669             vlc_cond_wait( &p_this->object_wait, &p_this->object_lock );
670         }
671
672         p_priv->b_thread = VLC_TRUE;
673
674 #if defined( WIN32 ) || defined( UNDER_CE )
675         msg_Dbg( p_this, "thread %u (%s) created at priority %d (%s:%d)",
676                  (unsigned int)p_priv->thread_id.id, psz_name,
677                  i_priority, psz_file, i_line );
678 #else
679         msg_Dbg( p_this, "thread %u (%s) created at priority %d (%s:%d)",
680                  (unsigned int)p_priv->thread_id, psz_name, i_priority,
681                  psz_file, i_line );
682 #endif
683
684
685         vlc_mutex_unlock( &p_this->object_lock );
686     }
687     else
688     {
689         msg_Err( p_this, "%s thread could not be created at %s:%d (%s)",
690                          psz_name, psz_file, i_line, strerror(i_ret) );
691         vlc_mutex_unlock( &p_this->object_lock );
692     }
693
694     return i_ret;
695 }
696
697 /*****************************************************************************
698  * vlc_thread_set_priority: set the priority of the current thread when we
699  * couldn't set it in vlc_thread_create (for instance for the main thread)
700  *****************************************************************************/
701 int __vlc_thread_set_priority( vlc_object_t *p_this, const char * psz_file,
702                                int i_line, int i_priority )
703 {
704     vlc_object_internals_t *p_priv = p_this->p_internals;
705 #if defined( PTH_INIT_IN_PTH_H ) || defined( ST_INIT_IN_ST_H )
706 #elif defined( WIN32 ) || defined( UNDER_CE )
707     if( !p_priv->thread_id.hThread )
708         p_priv->thread_id.hThread = GetCurrentThread();
709     if( !SetThreadPriority(p_priv->thread_id.hThread, i_priority) )
710     {
711         msg_Warn( p_this, "couldn't set a faster priority" );
712         return 1;
713     }
714
715 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
716 # ifndef __APPLE__
717     if( config_GetInt( p_this, "rt-priority" ) > 0 )
718 # endif
719     {
720         int i_error, i_policy;
721         struct sched_param param;
722
723         memset( &param, 0, sizeof(struct sched_param) );
724         if( config_GetType( p_this, "rt-offset" ) )
725         {
726             i_priority += config_GetInt( p_this, "rt-offset" );
727         }
728         if( i_priority <= 0 )
729         {
730             param.sched_priority = (-1) * i_priority;
731             i_policy = SCHED_OTHER;
732         }
733         else
734         {
735             param.sched_priority = i_priority;
736             i_policy = SCHED_RR;
737         }
738         if( !p_priv->thread_id )
739             p_priv->thread_id = pthread_self();
740         if( (i_error = pthread_setschedparam( p_priv->thread_id,
741                                                i_policy, &param )) )
742         {
743             msg_Warn( p_this, "couldn't set thread priority (%s:%d): %s",
744                       psz_file, i_line, strerror(i_error) );
745             i_priority = 0;
746         }
747     }
748 #endif
749
750     return 0;
751 }
752
753 /*****************************************************************************
754  * vlc_thread_ready: tell the parent thread we were successfully spawned
755  *****************************************************************************/
756 void __vlc_thread_ready( vlc_object_t *p_this )
757 {
758     vlc_mutex_lock( &p_this->object_lock );
759     vlc_cond_signal( &p_this->object_wait );
760     vlc_mutex_unlock( &p_this->object_lock );
761 }
762
763 /*****************************************************************************
764  * vlc_thread_join: wait until a thread exits, inner version
765  *****************************************************************************/
766 void __vlc_thread_join( vlc_object_t *p_this, const char * psz_file, int i_line )
767 {
768     vlc_object_internals_t *p_priv = p_this->p_internals;
769
770 #if defined( UNDER_CE ) || defined( WIN32 )
771     HMODULE hmodule;
772     BOOL (WINAPI *OurGetThreadTimes)( HANDLE, FILETIME*, FILETIME*,
773                                       FILETIME*, FILETIME* );
774     FILETIME create_ft, exit_ft, kernel_ft, user_ft;
775     int64_t real_time, kernel_time, user_time;
776     HANDLE hThread;
777    
778     /*
779     ** object will close its thread handle when destroyed, duplicate it here 
780     ** to be on the safe side
781     */
782     if( ! DuplicateHandle(GetCurrentProcess(),
783             p_priv->thread_id.hThread,
784             GetCurrentProcess(),
785             &hThread,
786             0,
787             FALSE,
788             DUPLICATE_SAME_ACCESS) )
789     {
790         msg_Err( p_this, "thread_join(%u) failed at %s:%d (%s)",
791                          (unsigned int)p_priv->thread_id.id,
792                          psz_file, i_line, GetLastError() );
793         p_priv->b_thread = VLC_FALSE;
794         return;
795     }
796
797     WaitForSingleObject( hThread, INFINITE );
798
799     msg_Dbg( p_this, "thread %u joined (%s:%d)",
800                      (unsigned int)p_priv->thread_id.id,
801                      psz_file, i_line );
802 #if defined( UNDER_CE )
803     hmodule = GetModuleHandle( _T("COREDLL") );
804 #else
805     hmodule = GetModuleHandle( _T("KERNEL32") );
806 #endif
807     OurGetThreadTimes = (BOOL (WINAPI*)( HANDLE, FILETIME*, FILETIME*,
808                                          FILETIME*, FILETIME* ))
809         GetProcAddress( hmodule, _T("GetThreadTimes") );
810
811     if( OurGetThreadTimes &&
812         OurGetThreadTimes( hThread,
813                            &create_ft, &exit_ft, &kernel_ft, &user_ft ) )
814     {
815         real_time =
816           ((((int64_t)exit_ft.dwHighDateTime)<<32)| exit_ft.dwLowDateTime) -
817           ((((int64_t)create_ft.dwHighDateTime)<<32)| create_ft.dwLowDateTime);
818         real_time /= 10;
819
820         kernel_time =
821           ((((int64_t)kernel_ft.dwHighDateTime)<<32)|
822            kernel_ft.dwLowDateTime) / 10;
823
824         user_time =
825           ((((int64_t)user_ft.dwHighDateTime)<<32)|
826            user_ft.dwLowDateTime) / 10;
827
828         msg_Dbg( p_this, "thread times: "
829                  "real "I64Fd"m%fs, kernel "I64Fd"m%fs, user "I64Fd"m%fs",
830                  real_time/60/1000000,
831                  (double)((real_time%(60*1000000))/1000000.0),
832                  kernel_time/60/1000000,
833                  (double)((kernel_time%(60*1000000))/1000000.0),
834                  user_time/60/1000000,
835                  (double)((user_time%(60*1000000))/1000000.0) );
836     }
837     CloseHandle( hThread );
838
839 #else /* !defined(WIN32) */
840
841     int i_ret = 0;
842
843 #if defined( PTH_INIT_IN_PTH_H )
844     i_ret = ( pth_join( p_priv->thread_id, NULL ) == FALSE );
845
846 #elif defined( ST_INIT_IN_ST_H )
847     i_ret = st_thread_join( p_priv->thread_id, NULL );
848
849 #elif defined( HAVE_KERNEL_SCHEDULER_H )
850     int32_t exit_value;
851     i_ret = (B_OK == wait_for_thread( p_priv->thread_id, &exit_value ));
852
853 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
854     i_ret = pthread_join( p_priv->thread_id, NULL );
855
856 #elif defined( HAVE_CTHREADS_H )
857     cthread_join( p_priv->thread_id );
858     i_ret = 1;
859
860 #endif
861
862     if( i_ret )
863     {
864         msg_Err( p_this, "thread_join(%u) failed at %s:%d (%s)",
865                          (unsigned int)p_priv->thread_id, psz_file, i_line,
866                          strerror(i_ret) );
867     }
868     else
869     {
870         msg_Dbg( p_this, "thread %u joined (%s:%d)",
871                          (unsigned int)p_priv->thread_id, psz_file, i_line );
872     }
873
874 #endif
875
876     p_priv->b_thread = VLC_FALSE;
877 }
878