]> git.sesse.net Git - vlc/blob - src/misc/threads.c
Mutexes cannot be error-checking and recursive at the same time
[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 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc/vlc.h>
32
33 #include "libvlc.h"
34 #include <assert.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38
39 #define VLC_THREADS_UNINITIALIZED  0
40 #define VLC_THREADS_PENDING        1
41 #define VLC_THREADS_ERROR          2
42 #define VLC_THREADS_READY          3
43
44 /*****************************************************************************
45  * Global mutex for lazy initialization of the threads system
46  *****************************************************************************/
47 static volatile unsigned i_initializations = 0;
48
49 #if defined( UNDER_CE )
50 #elif defined( WIN32 )
51 #elif defined( HAVE_KERNEL_SCHEDULER_H )
52 #elif defined( LIBVLC_USE_PTHREAD )
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
69 vlc_threadvar_t msg_context_global_key;
70
71 #if defined(LIBVLC_USE_PTHREAD)
72 static inline unsigned long vlc_threadid (void)
73 {
74      union { pthread_t th; unsigned long int i; } v = { };
75      v.th = pthread_self ();
76      return v.i;
77 }
78
79
80 /*****************************************************************************
81  * vlc_thread_fatal: Report an error from the threading layer
82  *****************************************************************************
83  * This is mostly meant for debugging.
84  *****************************************************************************/
85 void vlc_pthread_fatal (const char *action, int error,
86                         const char *file, unsigned line)
87 {
88     fprintf (stderr, "LibVLC fatal error %s in thread %lu at %s:%u: %d\n",
89              action, vlc_threadid (), file, line, error);
90     fflush (stderr);
91
92     /* Sometimes strerror_r() crashes too, so make sure we print an error
93      * message before we invoke it */
94 #ifdef __GLIBC__
95     /* Avoid the strerror_r() prototype brain damage in glibc */
96     errno = error;
97     fprintf (stderr, " Error message: %m\n");
98 #else
99     char buf[1000];
100     const char *msg;
101
102     switch (strerror_r (error, buf, sizeof (buf)))
103     {
104         case 0:
105             msg = buf;
106             break;
107         case ERANGE: /* should never happen */
108             msg = "unknwon (too big to display)";
109             break;
110         default:
111             msg = "unknown (invalid error number)";
112             break;
113     }
114     fprintf (stderr, " Error message: %s\n", msg);
115 #endif
116
117     fflush (stderr);
118     abort ();
119 }
120 #endif
121
122
123 /*****************************************************************************
124  * vlc_threads_init: initialize threads system
125  *****************************************************************************
126  * This function requires lazy initialization of a global lock in order to
127  * keep the library really thread-safe. Some architectures don't support this
128  * and thus do not guarantee the complete reentrancy.
129  *****************************************************************************/
130 int vlc_threads_init( void )
131 {
132     int i_ret = VLC_SUCCESS;
133
134     /* If we have lazy mutex initialization, use it. Otherwise, we just
135      * hope nothing wrong happens. */
136 #if defined( UNDER_CE )
137 #elif defined( WIN32 )
138 #elif defined( HAVE_KERNEL_SCHEDULER_H )
139 #elif defined( LIBVLC_USE_PTHREAD )
140     pthread_mutex_lock( &once_mutex );
141 #endif
142
143     if( i_initializations == 0 )
144     {
145         p_root = vlc_custom_create( NULL, sizeof( *p_root ),
146                                     VLC_OBJECT_GENERIC, "root" );
147         if( p_root == NULL )
148         {
149             i_ret = VLC_ENOMEM;
150             goto out;
151         }
152
153         /* We should be safe now. Do all the initialization stuff we want. */
154         vlc_threadvar_create( p_root, &msg_context_global_key );
155     }
156     i_initializations++;
157
158 out:
159     /* If we have lazy mutex initialization support, unlock the mutex.
160      * Otherwize, we are screwed. */
161 #if defined( UNDER_CE )
162 #elif defined( WIN32 )
163 #elif defined( HAVE_KERNEL_SCHEDULER_H )
164 #elif defined( LIBVLC_USE_PTHREAD )
165     pthread_mutex_unlock( &once_mutex );
166 #endif
167
168     return i_ret;
169 }
170
171 /*****************************************************************************
172  * vlc_threads_end: stop threads system
173  *****************************************************************************
174  * FIXME: This function is far from being threadsafe.
175  *****************************************************************************/
176 void vlc_threads_end( void )
177 {
178 #if defined( UNDER_CE )
179 #elif defined( WIN32 )
180 #elif defined( HAVE_KERNEL_SCHEDULER_H )
181 #elif defined( LIBVLC_USE_PTHREAD )
182     pthread_mutex_lock( &once_mutex );
183 #endif
184
185     assert( i_initializations > 0 );
186
187     if( i_initializations == 1 )
188         vlc_object_release( p_root );
189     i_initializations--;
190
191 #if defined( UNDER_CE )
192 #elif defined( WIN32 )
193 #elif defined( HAVE_KERNEL_SCHEDULER_H )
194 #elif defined( LIBVLC_USE_PTHREAD )
195     pthread_mutex_unlock( &once_mutex );
196 #endif
197 }
198
199 #ifdef __linux__
200 /* This is not prototyped under Linux, though it exists. */
201 int pthread_mutexattr_setkind_np( pthread_mutexattr_t *attr, int kind );
202 #endif
203
204 /*****************************************************************************
205  * vlc_mutex_init: initialize a mutex
206  *****************************************************************************/
207 int vlc_mutex_init( vlc_mutex_t *p_mutex )
208 {
209 #if defined( UNDER_CE )
210     InitializeCriticalSection( &p_mutex->csection );
211     return 0;
212
213 #elif defined( WIN32 )
214     *p_mutex = CreateMutex( 0, FALSE, 0 );
215     return (*p_mutex != NULL) ? 0 : ENOMEM;
216
217 #elif defined( HAVE_KERNEL_SCHEDULER_H )
218     /* check the arguments and whether it's already been initialized */
219     if( p_mutex == NULL )
220     {
221         return B_BAD_VALUE;
222     }
223
224     if( p_mutex->init == 9999 )
225     {
226         return EALREADY;
227     }
228
229     p_mutex->lock = create_sem( 1, "BeMutex" );
230     if( p_mutex->lock < B_NO_ERROR )
231     {
232         return( -1 );
233     }
234
235     p_mutex->init = 9999;
236     return B_OK;
237
238 #elif defined( LIBVLC_USE_PTHREAD )
239     pthread_mutexattr_t attr;
240     int                 i_result;
241
242     pthread_mutexattr_init( &attr );
243
244 # ifndef NDEBUG
245     /* Create error-checking mutex to detect problems more easily. */
246 #  if defined(SYS_LINUX)
247     pthread_mutexattr_setkind_np( &attr, PTHREAD_MUTEX_ERRORCHECK_NP );
248 #  else
249     pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_ERRORCHECK );
250 #  endif
251 # endif
252     i_result = pthread_mutex_init( p_mutex, &attr );
253     pthread_mutexattr_destroy( &attr );
254     return i_result;
255 #endif
256 }
257
258 /*****************************************************************************
259  * vlc_mutex_init: initialize a recursive mutex (Do not use)
260  *****************************************************************************/
261 int vlc_mutex_init_recursive( vlc_mutex_t *p_mutex )
262 {
263 #if defined( WIN32 )
264     /* Create mutex returns a recursive mutex */
265     *p_mutex = CreateMutex( 0, FALSE, 0 );
266     return (*p_mutex != NULL) ? 0 : ENOMEM;
267 #elif defined( LIBVLC_USE_PTHREAD )
268     pthread_mutexattr_t attr;
269     int                 i_result;
270
271     pthread_mutexattr_init( &attr );
272     pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
273     i_result = pthread_mutex_init( p_mutex, &attr );
274     pthread_mutexattr_destroy( &attr );
275     return( i_result );
276 #else
277 # error Unimplemented!
278 #endif
279 }
280
281
282 /*****************************************************************************
283  * vlc_mutex_destroy: destroy a mutex, inner version
284  *****************************************************************************/
285 void __vlc_mutex_destroy( const char * psz_file, int i_line, vlc_mutex_t *p_mutex )
286 {
287 #if defined( UNDER_CE )
288     VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
289
290     DeleteCriticalSection( &p_mutex->csection );
291
292 #elif defined( WIN32 )
293     VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
294
295     CloseHandle( *p_mutex );
296
297 #elif defined( HAVE_KERNEL_SCHEDULER_H )
298     if( p_mutex->init == 9999 )
299         delete_sem( p_mutex->lock );
300
301     p_mutex->init = 0;
302
303 #elif defined( LIBVLC_USE_PTHREAD )
304     int val = pthread_mutex_destroy( p_mutex );
305     VLC_THREAD_ASSERT ("destroying mutex");
306
307 #endif
308 }
309
310 /*****************************************************************************
311  * vlc_cond_init: initialize a condition
312  *****************************************************************************/
313 int __vlc_cond_init( vlc_cond_t *p_condvar )
314 {
315 #if defined( UNDER_CE ) || defined( WIN32 )
316     /* Initialize counter */
317     p_condvar->i_waiting_threads = 0;
318
319     /* Create an auto-reset event. */
320     p_condvar->event = CreateEvent( NULL,   /* no security */
321                                     FALSE,  /* auto-reset event */
322                                     FALSE,  /* start non-signaled */
323                                     NULL ); /* unnamed */
324     return !p_condvar->event;
325
326 #elif defined( HAVE_KERNEL_SCHEDULER_H )
327     if( !p_condvar )
328     {
329         return B_BAD_VALUE;
330     }
331
332     if( p_condvar->init == 9999 )
333     {
334         return EALREADY;
335     }
336
337     p_condvar->thread = -1;
338     p_condvar->init = 9999;
339     return 0;
340
341 #elif 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 #endif
363 }
364
365 /*****************************************************************************
366  * vlc_cond_destroy: destroy a condition, inner version
367  *****************************************************************************/
368 void __vlc_cond_destroy( const char * psz_file, int i_line, vlc_cond_t *p_condvar )
369 {
370 #if defined( UNDER_CE ) || defined( WIN32 )
371     VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
372
373     CloseHandle( p_condvar->event );
374
375 #elif defined( HAVE_KERNEL_SCHEDULER_H )
376     p_condvar->init = 0;
377
378 #elif defined( LIBVLC_USE_PTHREAD )
379     int val = pthread_cond_destroy( p_condvar );
380     VLC_THREAD_ASSERT ("destroying condition");
381
382 #endif
383 }
384
385 /*****************************************************************************
386  * vlc_tls_create: create a thread-local variable
387  *****************************************************************************/
388 int __vlc_threadvar_create( vlc_threadvar_t *p_tls )
389 {
390     int i_ret = -1;
391
392 #if defined( HAVE_KERNEL_SCHEDULER_H )
393 # error Unimplemented!
394 #elif defined( UNDER_CE )
395 #elif defined( WIN32 )
396     *p_tls = TlsAlloc();
397     i_ret = (*p_tls == INVALID_HANDLE_VALUE) ? EAGAIN : 0;
398
399 #elif defined( LIBVLC_USE_PTHREAD )
400     i_ret =  pthread_key_create( p_tls, NULL );
401 #endif
402     return i_ret;
403 }
404
405 /*****************************************************************************
406  * vlc_thread_create: create a thread, inner version
407  *****************************************************************************
408  * Note that i_priority is only taken into account on platforms supporting
409  * userland real-time priority threads.
410  *****************************************************************************/
411 int __vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line,
412                          const char *psz_name, void * ( *func ) ( void * ),
413                          int i_priority, bool b_wait )
414 {
415     int i_ret;
416     void *p_data = (void *)p_this;
417     vlc_object_internals_t *p_priv = vlc_internals( p_this );
418
419     vlc_mutex_lock( &p_this->object_lock );
420
421 #if defined( WIN32 ) || defined( UNDER_CE )
422     {
423         /* When using the MSVCRT C library you have to use the _beginthreadex
424          * function instead of CreateThread, otherwise you'll end up with
425          * memory leaks and the signal functions not working (see Microsoft
426          * Knowledge Base, article 104641) */
427 #if defined( UNDER_CE )
428         DWORD  threadId;
429         HANDLE hThread = CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)func,
430                                       (LPVOID)p_data, CREATE_SUSPENDED,
431                       &threadId );
432 #else
433         unsigned threadId;
434         uintptr_t hThread = _beginthreadex( NULL, 0,
435                         (LPTHREAD_START_ROUTINE)func,
436                                             (void*)p_data, CREATE_SUSPENDED,
437                         &threadId );
438 #endif
439         p_priv->thread_id.id = (DWORD)threadId;
440         p_priv->thread_id.hThread = (HANDLE)hThread;
441         ResumeThread((HANDLE)hThread);
442     }
443
444     i_ret = ( p_priv->thread_id.hThread ? 0 : 1 );
445
446     if( !i_ret && i_priority )
447     {
448         if( !SetThreadPriority(p_priv->thread_id.hThread, i_priority) )
449         {
450             msg_Warn( p_this, "couldn't set a faster priority" );
451             i_priority = 0;
452         }
453     }
454
455 #elif defined( HAVE_KERNEL_SCHEDULER_H )
456     p_priv->thread_id = spawn_thread( (thread_func)func, psz_name,
457                                       i_priority, p_data );
458     i_ret = resume_thread( p_priv->thread_id );
459
460 #elif defined( LIBVLC_USE_PTHREAD )
461     i_ret = pthread_create( &p_priv->thread_id, NULL, func, p_data );
462
463 #ifndef __APPLE__
464     if( config_GetInt( p_this, "rt-priority" ) )
465 #endif
466     {
467         int i_error, i_policy;
468         struct sched_param param;
469
470         memset( &param, 0, sizeof(struct sched_param) );
471         if( config_GetType( p_this, "rt-offset" ) )
472         {
473             i_priority += config_GetInt( p_this, "rt-offset" );
474         }
475         if( i_priority <= 0 )
476         {
477             param.sched_priority = (-1) * i_priority;
478             i_policy = SCHED_OTHER;
479         }
480         else
481         {
482             param.sched_priority = i_priority;
483             i_policy = SCHED_RR;
484         }
485         if( (i_error = pthread_setschedparam( p_priv->thread_id,
486                                                i_policy, &param )) )
487         {
488             errno = i_error;
489             msg_Warn( p_this, "couldn't set thread priority (%s:%d): %m",
490                       psz_file, i_line );
491             i_priority = 0;
492         }
493     }
494 #ifndef __APPLE__
495     else
496     {
497         i_priority = 0;
498     }
499 #endif
500
501 #endif
502
503     if( i_ret == 0 )
504     {
505         if( b_wait )
506         {
507             msg_Dbg( p_this, "waiting for thread completion" );
508             vlc_object_wait( p_this );
509         }
510
511         p_priv->b_thread = true;
512
513 #if defined( WIN32 ) || defined( UNDER_CE )
514         msg_Dbg( p_this, "thread %u (%s) created at priority %d (%s:%d)",
515                  (unsigned int)p_priv->thread_id.id, psz_name,
516          i_priority, psz_file, i_line );
517 #else
518         msg_Dbg( p_this, "thread %u (%s) created at priority %d (%s:%d)",
519                  (unsigned int)p_priv->thread_id, psz_name, i_priority,
520                  psz_file, i_line );
521 #endif
522
523
524         vlc_mutex_unlock( &p_this->object_lock );
525     }
526     else
527     {
528         errno = i_ret;
529         msg_Err( p_this, "%s thread could not be created at %s:%d (%m)",
530                          psz_name, psz_file, i_line );
531         vlc_mutex_unlock( &p_this->object_lock );
532     }
533
534     return i_ret;
535 }
536
537 /*****************************************************************************
538  * vlc_thread_set_priority: set the priority of the current thread when we
539  * couldn't set it in vlc_thread_create (for instance for the main thread)
540  *****************************************************************************/
541 int __vlc_thread_set_priority( vlc_object_t *p_this, const char * psz_file,
542                                int i_line, int i_priority )
543 {
544     vlc_object_internals_t *p_priv = vlc_internals( p_this );
545 #if defined( WIN32 ) || defined( UNDER_CE )
546     VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
547
548     if( !p_priv->thread_id.hThread )
549         p_priv->thread_id.hThread = GetCurrentThread();
550     if( !SetThreadPriority(p_priv->thread_id.hThread, i_priority) )
551     {
552         msg_Warn( p_this, "couldn't set a faster priority" );
553         return 1;
554     }
555
556 #elif defined( LIBVLC_USE_PTHREAD )
557 # ifndef __APPLE__
558     if( config_GetInt( p_this, "rt-priority" ) > 0 )
559 # endif
560     {
561         int i_error, i_policy;
562         struct sched_param param;
563
564         memset( &param, 0, sizeof(struct sched_param) );
565         if( config_GetType( p_this, "rt-offset" ) )
566         {
567             i_priority += config_GetInt( p_this, "rt-offset" );
568         }
569         if( i_priority <= 0 )
570         {
571             param.sched_priority = (-1) * i_priority;
572             i_policy = SCHED_OTHER;
573         }
574         else
575         {
576             param.sched_priority = i_priority;
577             i_policy = SCHED_RR;
578         }
579         if( !p_priv->thread_id )
580             p_priv->thread_id = pthread_self();
581         if( (i_error = pthread_setschedparam( p_priv->thread_id,
582                                                i_policy, &param )) )
583         {
584             errno = i_error;
585             msg_Warn( p_this, "couldn't set thread priority (%s:%d): %m",
586                       psz_file, i_line );
587             i_priority = 0;
588         }
589     }
590 #endif
591
592     return 0;
593 }
594
595 /*****************************************************************************
596  * vlc_thread_ready: tell the parent thread we were successfully spawned
597  *****************************************************************************/
598 void __vlc_thread_ready( vlc_object_t *p_this )
599 {
600     vlc_object_signal( p_this );
601 }
602
603 /*****************************************************************************
604  * vlc_thread_join: wait until a thread exits, inner version
605  *****************************************************************************/
606 void __vlc_thread_join( vlc_object_t *p_this, const char * psz_file, int i_line )
607 {
608     vlc_object_internals_t *p_priv = vlc_internals( p_this );
609
610 #if defined( UNDER_CE ) || defined( WIN32 )
611     HMODULE hmodule;
612     BOOL (WINAPI *OurGetThreadTimes)( HANDLE, FILETIME*, FILETIME*,
613                                       FILETIME*, FILETIME* );
614     FILETIME create_ft, exit_ft, kernel_ft, user_ft;
615     int64_t real_time, kernel_time, user_time;
616     HANDLE hThread;
617
618     /*
619     ** object will close its thread handle when destroyed, duplicate it here
620     ** to be on the safe side
621     */
622     if( ! DuplicateHandle(GetCurrentProcess(),
623             p_priv->thread_id.hThread,
624             GetCurrentProcess(),
625             &hThread,
626             0,
627             FALSE,
628             DUPLICATE_SAME_ACCESS) )
629     {
630         msg_Err( p_this, "thread_join(%u) failed at %s:%d (%u)",
631                          (unsigned int)p_priv->thread_id.id,
632              psz_file, i_line, (unsigned int)GetLastError() );
633         p_priv->b_thread = false;
634         return;
635     }
636
637     WaitForSingleObject( hThread, INFINITE );
638
639     msg_Dbg( p_this, "thread %u joined (%s:%d)",
640              (unsigned int)p_priv->thread_id.id,
641              psz_file, i_line );
642 #if defined( UNDER_CE )
643     hmodule = GetModuleHandle( _T("COREDLL") );
644 #else
645     hmodule = GetModuleHandle( _T("KERNEL32") );
646 #endif
647     OurGetThreadTimes = (BOOL (WINAPI*)( HANDLE, FILETIME*, FILETIME*,
648                                          FILETIME*, FILETIME* ))
649         GetProcAddress( hmodule, _T("GetThreadTimes") );
650
651     if( OurGetThreadTimes &&
652         OurGetThreadTimes( hThread,
653                            &create_ft, &exit_ft, &kernel_ft, &user_ft ) )
654     {
655         real_time =
656           ((((int64_t)exit_ft.dwHighDateTime)<<32)| exit_ft.dwLowDateTime) -
657           ((((int64_t)create_ft.dwHighDateTime)<<32)| create_ft.dwLowDateTime);
658         real_time /= 10;
659
660         kernel_time =
661           ((((int64_t)kernel_ft.dwHighDateTime)<<32)|
662            kernel_ft.dwLowDateTime) / 10;
663
664         user_time =
665           ((((int64_t)user_ft.dwHighDateTime)<<32)|
666            user_ft.dwLowDateTime) / 10;
667
668         msg_Dbg( p_this, "thread times: "
669                  "real %"PRId64"m%fs, kernel %"PRId64"m%fs, user %"PRId64"m%fs",
670                  real_time/60/1000000,
671                  (double)((real_time%(60*1000000))/1000000.0),
672                  kernel_time/60/1000000,
673                  (double)((kernel_time%(60*1000000))/1000000.0),
674                  user_time/60/1000000,
675                  (double)((user_time%(60*1000000))/1000000.0) );
676     }
677     CloseHandle( hThread );
678
679 #else /* !defined(WIN32) */
680
681     int i_ret = 0;
682
683 #if defined( HAVE_KERNEL_SCHEDULER_H )
684     int32_t exit_value;
685     i_ret = (B_OK == wait_for_thread( p_priv->thread_id, &exit_value ));
686
687 #elif defined( LIBVLC_USE_PTHREAD )
688     /* Make sure we do return if we are calling vlc_thread_join()
689      * from the joined thread */
690     if (pthread_equal (pthread_self (), p_priv->thread_id))
691         i_ret = pthread_detach (p_priv->thread_id);
692     else
693         i_ret = pthread_join (p_priv->thread_id, NULL);
694 #endif
695
696     if( i_ret )
697     {
698         errno = i_ret;
699         msg_Err( p_this, "thread_join(%u) failed at %s:%d (%m)",
700                          (unsigned int)p_priv->thread_id, psz_file, i_line );
701     }
702     else
703     {
704         msg_Dbg( p_this, "thread %u joined (%s:%d)",
705                          (unsigned int)p_priv->thread_id, psz_file, i_line );
706     }
707
708 #endif
709
710     p_priv->b_thread = false;
711 }
712