threads.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:38k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * threads.c : threads implementation for the VideoLAN client
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2008 the VideoLAN team
  5.  * $Id: 9f83c40d6b0b9f66dbe55d4eb492863b2554e433 $
  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.  *          Rémi Denis-Courmont
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include "libvlc.h"
  32. #include <stdarg.h>
  33. #include <assert.h>
  34. #ifdef HAVE_UNISTD_H
  35. # include <unistd.h>
  36. #endif
  37. #if defined( LIBVLC_USE_PTHREAD )
  38. # include <signal.h>
  39. # include <sched.h>
  40. # ifdef __linux__
  41. #  include <sys/syscall.h> /* SYS_gettid */
  42. # endif
  43. #else
  44. static vlc_threadvar_t cancel_key;
  45. #endif
  46. #ifdef HAVE_EXECINFO_H
  47. # include <execinfo.h>
  48. #endif
  49. #ifdef __APPLE__
  50. # include <sys/time.h> /* gettimeofday in vlc_cond_timedwait */
  51. #endif
  52. /**
  53.  * Print a backtrace to the standard error for debugging purpose.
  54.  */
  55. void vlc_trace (const char *fn, const char *file, unsigned line)
  56. {
  57.      fprintf (stderr, "at %s:%u in %sn", file, line, fn);
  58.      fflush (stderr); /* needed before switch to low-level I/O */
  59. #ifdef HAVE_BACKTRACE
  60.      void *stack[20];
  61.      int len = backtrace (stack, sizeof (stack) / sizeof (stack[0]));
  62.      backtrace_symbols_fd (stack, len, 2);
  63. #endif
  64. #ifndef WIN32
  65.      fsync (2);
  66. #endif
  67. }
  68. static inline unsigned long vlc_threadid (void)
  69. {
  70. #if defined (LIBVLC_USE_PTHREAD)
  71. # if defined (__linux__)
  72.      return syscall (SYS_gettid);
  73. # else
  74.      union { pthread_t th; unsigned long int i; } v = { };
  75.      v.th = pthread_self ();
  76.      return v.i;
  77. #endif
  78. #elif defined (WIN32)
  79.      return GetCurrentThreadId ();
  80. #else
  81.      return 0;
  82. #endif
  83. }
  84. #ifndef NDEBUG
  85. /*****************************************************************************
  86.  * vlc_thread_fatal: Report an error from the threading layer
  87.  *****************************************************************************
  88.  * This is mostly meant for debugging.
  89.  *****************************************************************************/
  90. static void
  91. vlc_thread_fatal (const char *action, int error,
  92.                   const char *function, const char *file, unsigned line)
  93. {
  94.     fprintf (stderr, "LibVLC fatal error %s (%d) in thread %lu ",
  95.              action, error, vlc_threadid ());
  96.     vlc_trace (function, file, line);
  97.     /* Sometimes strerror_r() crashes too, so make sure we print an error
  98.      * message before we invoke it */
  99. #ifdef __GLIBC__
  100.     /* Avoid the strerror_r() prototype brain damage in glibc */
  101.     errno = error;
  102.     fprintf (stderr, " Error message: %mn");
  103. #elif !defined (WIN32)
  104.     char buf[1000];
  105.     const char *msg;
  106.     switch (strerror_r (error, buf, sizeof (buf)))
  107.     {
  108.         case 0:
  109.             msg = buf;
  110.             break;
  111.         case ERANGE: /* should never happen */
  112.             msg = "unknwon (too big to display)";
  113.             break;
  114.         default:
  115.             msg = "unknown (invalid error number)";
  116.             break;
  117.     }
  118.     fprintf (stderr, " Error message: %sn", msg);
  119. #endif
  120.     fflush (stderr);
  121.     abort ();
  122. }
  123. # define VLC_THREAD_ASSERT( action ) 
  124.     if (val) vlc_thread_fatal (action, val, __func__, __FILE__, __LINE__)
  125. #else
  126. # define VLC_THREAD_ASSERT( action ) ((void)val)
  127. #endif
  128. /**
  129.  * Per-thread cancellation data
  130.  */
  131. #ifndef LIBVLC_USE_PTHREAD_CANCEL
  132. typedef struct vlc_cancel_t
  133. {
  134.     vlc_cleanup_t *cleaners;
  135.     bool           killable;
  136.     bool           killed;
  137. # ifdef UNDER_CE
  138.     HANDLE         cancel_event;
  139. # endif
  140. } vlc_cancel_t;
  141. # ifndef UNDER_CE
  142. #  define VLC_CANCEL_INIT { NULL, true, false }
  143. # else
  144. #  define VLC_CANCEL_INIT { NULL, true, false, NULL }
  145. # endif
  146. #endif
  147. #ifdef UNDER_CE
  148. static void CALLBACK vlc_cancel_self (ULONG_PTR dummy);
  149. static DWORD vlc_cancelable_wait (DWORD count, const HANDLE *handles,
  150.                                   DWORD delay)
  151. {
  152.     vlc_cancel_t *nfo = vlc_threadvar_get (cancel_key);
  153.     if (nfo == NULL)
  154.     {
  155.         /* Main thread - cannot be cancelled anyway */
  156.         return WaitForMultipleObjects (count, handles, FALSE, delay);
  157.     }
  158.     HANDLE new_handles[count + 1];
  159.     memcpy(new_handles, handles, count * sizeof(HANDLE));
  160.     new_handles[count] = nfo->cancel_event;
  161.     DWORD result = WaitForMultipleObjects (count + 1, new_handles, FALSE,
  162.                                            delay);
  163.     if (result == WAIT_OBJECT_0 + count)
  164.     {
  165.         vlc_cancel_self (NULL);
  166.         return WAIT_IO_COMPLETION;
  167.     }
  168.     else
  169.     {
  170.         return result;
  171.     }
  172. }
  173. DWORD SleepEx (DWORD dwMilliseconds, BOOL bAlertable)
  174. {
  175.     if (bAlertable)
  176.     {
  177.         DWORD result = vlc_cancelable_wait (0, NULL, dwMilliseconds);
  178.         return (result == WAIT_TIMEOUT) ? 0 : WAIT_IO_COMPLETION;
  179.     }
  180.     else
  181.     {
  182.         Sleep(dwMilliseconds);
  183.         return 0;
  184.     }
  185. }
  186. DWORD WaitForSingleObjectEx (HANDLE hHandle, DWORD dwMilliseconds,
  187.                              BOOL bAlertable)
  188. {
  189.     if (bAlertable)
  190.     {
  191.         /* The MSDN documentation specifies different return codes,
  192.          * but in practice they are the same. We just check that it
  193.          * remains so. */
  194. #if WAIT_ABANDONED != WAIT_ABANDONED_0
  195. # error Windows headers changed, code needs to be rewritten!
  196. #endif
  197.         return vlc_cancelable_wait (1, &hHandle, dwMilliseconds);
  198.     }
  199.     else
  200.     {
  201.         return WaitForSingleObject (hHandle, dwMilliseconds);
  202.     }
  203. }
  204. DWORD WaitForMultipleObjectsEx (DWORD nCount, const HANDLE *lpHandles,
  205.                                 BOOL bWaitAll, DWORD dwMilliseconds,
  206.                                 BOOL bAlertable)
  207. {
  208.     if (bAlertable)
  209.     {
  210.         /* We do not support the bWaitAll case */
  211.         assert (! bWaitAll);
  212.         return vlc_cancelable_wait (nCount, lpHandles, dwMilliseconds);
  213.     }
  214.     else
  215.     {
  216.         return WaitForMultipleObjects (nCount, lpHandles, bWaitAll,
  217.                                        dwMilliseconds);
  218.     }
  219. }
  220. #endif
  221. #ifdef WIN32
  222. static vlc_mutex_t super_mutex;
  223. BOOL WINAPI DllMain (HINSTANCE hinstDll, DWORD fdwReason, LPVOID lpvReserved)
  224. {
  225.     (void) hinstDll;
  226.     (void) lpvReserved;
  227.     switch (fdwReason)
  228.     {
  229.         case DLL_PROCESS_ATTACH:
  230.             vlc_mutex_init (&super_mutex);
  231.             vlc_threadvar_create (&cancel_key, free);
  232.             break;
  233.         case DLL_PROCESS_DETACH:
  234.             vlc_threadvar_delete( &cancel_key );
  235.             vlc_mutex_destroy (&super_mutex);
  236.             break;
  237.     }
  238.     return TRUE;
  239. }
  240. #endif
  241. #if defined (__GLIBC__) && (__GLIBC_MINOR__ < 6)
  242. /* This is not prototyped under glibc, though it exists. */
  243. int pthread_mutexattr_setkind_np( pthread_mutexattr_t *attr, int kind );
  244. #endif
  245. /*****************************************************************************
  246.  * vlc_mutex_init: initialize a mutex
  247.  *****************************************************************************/
  248. int vlc_mutex_init( vlc_mutex_t *p_mutex )
  249. {
  250. #if defined( LIBVLC_USE_PTHREAD )
  251.     pthread_mutexattr_t attr;
  252.     int                 i_result;
  253.     pthread_mutexattr_init( &attr );
  254. # ifndef NDEBUG
  255.     /* Create error-checking mutex to detect problems more easily. */
  256. #  if defined (__GLIBC__) && (__GLIBC_MINOR__ < 6)
  257.     pthread_mutexattr_setkind_np( &attr, PTHREAD_MUTEX_ERRORCHECK_NP );
  258. #  else
  259.     pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_ERRORCHECK );
  260. #  endif
  261. # endif
  262.     i_result = pthread_mutex_init( p_mutex, &attr );
  263.     pthread_mutexattr_destroy( &attr );
  264.     return i_result;
  265. #elif defined( WIN32 )
  266.     /* This creates a recursive mutex. This is OK as fast mutexes have
  267.      * no defined behavior in case of recursive locking. */
  268.     InitializeCriticalSection (&p_mutex->mutex);
  269.     p_mutex->initialized = 1;
  270.     return 0;
  271. #endif
  272. }
  273. /*****************************************************************************
  274.  * vlc_mutex_init: initialize a recursive mutex (Do not use)
  275.  *****************************************************************************/
  276. int vlc_mutex_init_recursive( vlc_mutex_t *p_mutex )
  277. {
  278. #if defined( LIBVLC_USE_PTHREAD )
  279.     pthread_mutexattr_t attr;
  280.     int                 i_result;
  281.     pthread_mutexattr_init( &attr );
  282. #  if defined (__GLIBC__) && (__GLIBC_MINOR__ < 6)
  283.     pthread_mutexattr_setkind_np( &attr, PTHREAD_MUTEX_RECURSIVE_NP );
  284. #  else
  285.     pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
  286. #  endif
  287.     i_result = pthread_mutex_init( p_mutex, &attr );
  288.     pthread_mutexattr_destroy( &attr );
  289.     return( i_result );
  290. #elif defined( WIN32 )
  291.     InitializeCriticalSection( &p_mutex->mutex );
  292.     p_mutex->initialized = 1;
  293.     return 0;
  294. #endif
  295. }
  296. /**
  297.  * Destroys a mutex. The mutex must not be locked.
  298.  *
  299.  * @param p_mutex mutex to destroy
  300.  * @return always succeeds
  301.  */
  302. void vlc_mutex_destroy (vlc_mutex_t *p_mutex)
  303. {
  304. #if defined( LIBVLC_USE_PTHREAD )
  305.     int val = pthread_mutex_destroy( p_mutex );
  306.     VLC_THREAD_ASSERT ("destroying mutex");
  307. #elif defined( WIN32 )
  308.     assert (InterlockedExchange (&p_mutex->initialized, -1) == 1);
  309.     DeleteCriticalSection (&p_mutex->mutex);
  310. #endif
  311. }
  312. #if defined(LIBVLC_USE_PTHREAD) && !defined(NDEBUG)
  313. # ifdef HAVE_VALGRIND_VALGRIND_H
  314. #  include <valgrind/valgrind.h>
  315. # else
  316. #  define RUNNING_ON_VALGRIND (0)
  317. # endif
  318. void vlc_assert_locked (vlc_mutex_t *p_mutex)
  319. {
  320.     if (RUNNING_ON_VALGRIND > 0)
  321.         return;
  322.     assert (pthread_mutex_lock (p_mutex) == EDEADLK);
  323. }
  324. #endif
  325. /**
  326.  * Acquires a mutex. If needed, waits for any other thread to release it.
  327.  * Beware of deadlocks when locking multiple mutexes at the same time,
  328.  * or when using mutexes from callbacks.
  329.  * This function is not a cancellation-point.
  330.  *
  331.  * @param p_mutex mutex initialized with vlc_mutex_init() or
  332.  *                vlc_mutex_init_recursive()
  333.  */
  334. void vlc_mutex_lock (vlc_mutex_t *p_mutex)
  335. {
  336. #if defined(LIBVLC_USE_PTHREAD)
  337.     int val = pthread_mutex_lock( p_mutex );
  338.     VLC_THREAD_ASSERT ("locking mutex");
  339. #elif defined( WIN32 )
  340.     if (InterlockedCompareExchange (&p_mutex->initialized, 0, 0) == 0)
  341.     { /* ^^ We could also lock super_mutex all the time... sluggish */
  342.         assert (p_mutex != &super_mutex); /* this one cannot be static */
  343.         vlc_mutex_lock (&super_mutex);
  344.         if (InterlockedCompareExchange (&p_mutex->initialized, 0, 0) == 0)
  345.             vlc_mutex_init (p_mutex);
  346.         /* FIXME: destroy the mutex some time... */
  347.         vlc_mutex_unlock (&super_mutex);
  348.     }
  349.     assert (InterlockedExchange (&p_mutex->initialized, 1) == 1);
  350.     EnterCriticalSection (&p_mutex->mutex);
  351. #endif
  352. }
  353. /**
  354.  * Acquires a mutex if and only if it is not currently held by another thread.
  355.  * This function never sleeps and can be used in delay-critical code paths.
  356.  * This function is not a cancellation-point.
  357.  *
  358.  * <b>Beware</b>: If this function fails, then the mutex is held... by another
  359.  * thread. The calling thread must deal with the error appropriately. That
  360.  * typically implies postponing the operations that would have required the
  361.  * mutex. If the thread cannot defer those operations, then it must use
  362.  * vlc_mutex_lock(). If in doubt, use vlc_mutex_lock() instead.
  363.  *
  364.  * @param p_mutex mutex initialized with vlc_mutex_init() or
  365.  *                vlc_mutex_init_recursive()
  366.  * @return 0 if the mutex could be acquired, an error code otherwise.
  367.  */
  368. int vlc_mutex_trylock (vlc_mutex_t *p_mutex)
  369. {
  370. #if defined(LIBVLC_USE_PTHREAD)
  371.     int val = pthread_mutex_trylock( p_mutex );
  372.     if (val != EBUSY)
  373.         VLC_THREAD_ASSERT ("locking mutex");
  374.     return val;
  375. #elif defined( WIN32 )
  376.     if (InterlockedCompareExchange (&p_mutex->initialized, 0, 0) == 0)
  377.     { /* ^^ We could also lock super_mutex all the time... sluggish */
  378.         assert (p_mutex != &super_mutex); /* this one cannot be static */
  379.         vlc_mutex_lock (&super_mutex);
  380.         if (InterlockedCompareExchange (&p_mutex->initialized, 0, 0) == 0)
  381.             vlc_mutex_init (p_mutex);
  382.         /* FIXME: destroy the mutex some time... */
  383.         vlc_mutex_unlock (&super_mutex);
  384.     }
  385.     assert (InterlockedExchange (&p_mutex->initialized, 1) == 1);
  386.     return TryEnterCriticalSection (&p_mutex->mutex) ? 0 : EBUSY;
  387. #endif
  388. }
  389. /**
  390.  * Releases a mutex (or crashes if the mutex is not locked by the caller).
  391.  * @param p_mutex mutex locked with vlc_mutex_lock().
  392.  */
  393. void vlc_mutex_unlock (vlc_mutex_t *p_mutex)
  394. {
  395. #if defined(LIBVLC_USE_PTHREAD)
  396.     int val = pthread_mutex_unlock( p_mutex );
  397.     VLC_THREAD_ASSERT ("unlocking mutex");
  398. #elif defined( WIN32 )
  399.     assert (InterlockedExchange (&p_mutex->initialized, 1) == 1);
  400.     LeaveCriticalSection (&p_mutex->mutex);
  401. #endif
  402. }
  403. /*****************************************************************************
  404.  * vlc_cond_init: initialize a condition variable
  405.  *****************************************************************************/
  406. int vlc_cond_init( vlc_cond_t *p_condvar )
  407. {
  408. #if defined( LIBVLC_USE_PTHREAD )
  409.     pthread_condattr_t attr;
  410.     int ret;
  411.     ret = pthread_condattr_init (&attr);
  412.     if (ret)
  413.         return ret;
  414. # if !defined (_POSIX_CLOCK_SELECTION)
  415.    /* Fairly outdated POSIX support (that was defined in 2001) */
  416. #  define _POSIX_CLOCK_SELECTION (-1)
  417. # endif
  418. # if (_POSIX_CLOCK_SELECTION >= 0)
  419.     /* NOTE: This must be the same clock as the one in mtime.c */
  420.     pthread_condattr_setclock (&attr, CLOCK_MONOTONIC);
  421. # endif
  422.     ret = pthread_cond_init (p_condvar, &attr);
  423.     pthread_condattr_destroy (&attr);
  424.     return ret;
  425. #elif defined( WIN32 )
  426.     /* Create a manual-reset event (manual reset is needed for broadcast). */
  427.     *p_condvar = CreateEvent( NULL, TRUE, FALSE, NULL );
  428.     return *p_condvar ? 0 : ENOMEM;
  429. #endif
  430. }
  431. /**
  432.  * Destroys a condition variable. No threads shall be waiting or signaling the
  433.  * condition.
  434.  * @param p_condvar condition variable to destroy
  435.  */
  436. void vlc_cond_destroy (vlc_cond_t *p_condvar)
  437. {
  438. #if defined( LIBVLC_USE_PTHREAD )
  439.     int val = pthread_cond_destroy( p_condvar );
  440.     VLC_THREAD_ASSERT ("destroying condition");
  441. #elif defined( WIN32 )
  442.     CloseHandle( *p_condvar );
  443. #endif
  444. }
  445. /**
  446.  * Wakes up one thread waiting on a condition variable, if any.
  447.  * @param p_condvar condition variable
  448.  */
  449. void vlc_cond_signal (vlc_cond_t *p_condvar)
  450. {
  451. #if defined(LIBVLC_USE_PTHREAD)
  452.     int val = pthread_cond_signal( p_condvar );
  453.     VLC_THREAD_ASSERT ("signaling condition variable");
  454. #elif defined( WIN32 )
  455.     /* NOTE: This will cause a broadcast, that is wrong.
  456.      * This will also wake up the next waiting thread if no thread are yet
  457.      * waiting, which is also wrong. However both of these issues are allowed
  458.      * by the provision for spurious wakeups. Better have too many wakeups
  459.      * than too few (= deadlocks). */
  460.     SetEvent (*p_condvar);
  461. #endif
  462. }
  463. /**
  464.  * Wakes up all threads (if any) waiting on a condition variable.
  465.  * @param p_cond condition variable
  466.  */
  467. void vlc_cond_broadcast (vlc_cond_t *p_condvar)
  468. {
  469. #if defined (LIBVLC_USE_PTHREAD)
  470.     pthread_cond_broadcast (p_condvar);
  471. #elif defined (WIN32)
  472.     SetEvent (*p_condvar);
  473. #endif
  474. }
  475. /**
  476.  * Waits for a condition variable. The calling thread will be suspended until
  477.  * another thread calls vlc_cond_signal() or vlc_cond_broadcast() on the same
  478.  * condition variable, the thread is cancelled with vlc_cancel(), or the
  479.  * system causes a "spurious" unsolicited wake-up.
  480.  *
  481.  * A mutex is needed to wait on a condition variable. It must <b>not</b> be
  482.  * a recursive mutex. Although it is possible to use the same mutex for
  483.  * multiple condition, it is not valid to use different mutexes for the same
  484.  * condition variable at the same time from different threads.
  485.  *
  486.  * In case of thread cancellation, the mutex is always locked before
  487.  * cancellation proceeds.
  488.  *
  489.  * The canonical way to use a condition variable to wait for event foobar is:
  490.  @code
  491.    vlc_mutex_lock (&lock);
  492.    mutex_cleanup_push (&lock); // release the mutex in case of cancellation
  493.    while (!foobar)
  494.        vlc_cond_wait (&wait, &lock);
  495.    --- foobar is now true, do something about it here --
  496.    vlc_cleanup_run (); // release the mutex
  497.   @endcode
  498.  *
  499.  * @param p_condvar condition variable to wait on
  500.  * @param p_mutex mutex which is unlocked while waiting,
  501.  *                then locked again when waking up.
  502.  * @param deadline <b>absolute</b> timeout
  503.  *
  504.  * @return 0 if the condition was signaled, an error code in case of timeout.
  505.  */
  506. void vlc_cond_wait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex)
  507. {
  508. #if defined(LIBVLC_USE_PTHREAD)
  509.     int val = pthread_cond_wait( p_condvar, p_mutex );
  510.     VLC_THREAD_ASSERT ("waiting on condition");
  511. #elif defined( WIN32 )
  512.     DWORD result;
  513.     do
  514.     {
  515.         vlc_testcancel ();
  516.         LeaveCriticalSection (&p_mutex->mutex);
  517.         result = WaitForSingleObjectEx (*p_condvar, INFINITE, TRUE);
  518.         EnterCriticalSection (&p_mutex->mutex);
  519.     }
  520.     while (result == WAIT_IO_COMPLETION);
  521.     assert (result != WAIT_ABANDONED); /* another thread failed to cleanup! */
  522.     assert (result != WAIT_FAILED);
  523.     ResetEvent (*p_condvar);
  524. #endif
  525. }
  526. /**
  527.  * Waits for a condition variable up to a certain date.
  528.  * This works like vlc_cond_wait(), except for the additional timeout.
  529.  *
  530.  * @param p_condvar condition variable to wait on
  531.  * @param p_mutex mutex which is unlocked while waiting,
  532.  *                then locked again when waking up.
  533.  * @param deadline <b>absolute</b> timeout
  534.  *
  535.  * @return 0 if the condition was signaled, an error code in case of timeout.
  536.  */
  537. int vlc_cond_timedwait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex,
  538.                         mtime_t deadline)
  539. {
  540. #if defined(LIBVLC_USE_PTHREAD)
  541. #if defined(__APPLE__) && !defined(__powerpc__) && !defined( __ppc__ ) && !defined( __ppc64__ )
  542.     /* mdate() is mac_absolute_time on osx, which we must convert to do
  543.      * the same base than gettimeofday() on which pthread_cond_timedwait
  544.      * counts on. */
  545.     mtime_t oldbase = mdate();
  546.     struct timeval tv;
  547.     gettimeofday(&tv, NULL);
  548.     mtime_t newbase = (mtime_t)tv.tv_sec * 1000000 + (mtime_t) tv.tv_usec;
  549.     deadline = deadline - oldbase + newbase;
  550. #endif
  551.     lldiv_t d = lldiv( deadline, CLOCK_FREQ );
  552.     struct timespec ts = { d.quot, d.rem * (1000000000 / CLOCK_FREQ) };
  553.     int val = pthread_cond_timedwait (p_condvar, p_mutex, &ts);
  554.     if (val != ETIMEDOUT)
  555.         VLC_THREAD_ASSERT ("timed-waiting on condition");
  556.     return val;
  557. #elif defined( WIN32 )
  558.     DWORD result;
  559.     do
  560.     {
  561.         vlc_testcancel ();
  562.         mtime_t total = (deadline - mdate ())/1000;
  563.         if( total < 0 )
  564.             total = 0;
  565.         DWORD delay = (total > 0x7fffffff) ? 0x7fffffff : total;
  566.         LeaveCriticalSection (&p_mutex->mutex);
  567.         result = WaitForSingleObjectEx (*p_condvar, delay, TRUE);
  568.         EnterCriticalSection (&p_mutex->mutex);
  569.     }
  570.     while (result == WAIT_IO_COMPLETION);
  571.     assert (result != WAIT_ABANDONED);
  572.     assert (result != WAIT_FAILED);
  573.     ResetEvent (*p_condvar);
  574.     return (result == WAIT_OBJECT_0) ? 0 : ETIMEDOUT;
  575. #endif
  576. }
  577. /*****************************************************************************
  578.  * vlc_tls_create: create a thread-local variable
  579.  *****************************************************************************/
  580. int vlc_threadvar_create( vlc_threadvar_t *p_tls, void (*destr) (void *) )
  581. {
  582.     int i_ret;
  583. #if defined( LIBVLC_USE_PTHREAD )
  584.     i_ret =  pthread_key_create( p_tls, destr );
  585. #elif defined( WIN32 )
  586.     /* FIXME: remember/use the destr() callback and stop leaking whatever */
  587.     *p_tls = TlsAlloc();
  588.     i_ret = (*p_tls == TLS_OUT_OF_INDEXES) ? EAGAIN : 0;
  589. #else
  590. # error Unimplemented!
  591. #endif
  592.     return i_ret;
  593. }
  594. void vlc_threadvar_delete (vlc_threadvar_t *p_tls)
  595. {
  596. #if defined( LIBVLC_USE_PTHREAD )
  597.     pthread_key_delete (*p_tls);
  598. #elif defined( WIN32 )
  599.     TlsFree (*p_tls);
  600. #else
  601. # error Unimplemented!
  602. #endif
  603. }
  604. /**
  605.  * Sets a thread-local variable.
  606.  * @param key thread-local variable key (created with vlc_threadvar_create())
  607.  * @param value new value for the variable for the calling thread
  608.  * @return 0 on success, a system error code otherwise.
  609.  */
  610. int vlc_threadvar_set (vlc_threadvar_t key, void *value)
  611. {
  612. #if defined(LIBVLC_USE_PTHREAD)
  613.     return pthread_setspecific (key, value);
  614. #elif defined( UNDER_CE ) || defined( WIN32 )
  615.     return TlsSetValue (key, value) ? ENOMEM : 0;
  616. #else
  617. # error Unimplemented!
  618. #endif
  619. }
  620. /**
  621.  * Gets the value of a thread-local variable for the calling thread.
  622.  * This function cannot fail.
  623.  * @return the value associated with the given variable for the calling
  624.  * or NULL if there is no value.
  625.  */
  626. void *vlc_threadvar_get (vlc_threadvar_t key)
  627. {
  628. #if defined(LIBVLC_USE_PTHREAD)
  629.     return pthread_getspecific (key);
  630. #elif defined( UNDER_CE ) || defined( WIN32 )
  631.     return TlsGetValue (key);
  632. #else
  633. # error Unimplemented!
  634. #endif
  635. }
  636. #if defined (LIBVLC_USE_PTHREAD)
  637. #elif defined (WIN32)
  638. static unsigned __stdcall vlc_entry (void *data)
  639. {
  640.     vlc_cancel_t cancel_data = VLC_CANCEL_INIT;
  641.     vlc_thread_t self = data;
  642. #ifdef UNDER_CE
  643.     cancel_data.cancel_event = self->cancel_event;
  644. #endif
  645.     vlc_threadvar_set (cancel_key, &cancel_data);
  646.     self->data = self->entry (self->data);
  647.     return 0;
  648. }
  649. #endif
  650. #if defined (LIBVLC_USE_PTHREAD)
  651. static bool rt_priorities = false;
  652. static int rt_offset;
  653. void vlc_threads_setup (libvlc_int_t *p_libvlc)
  654. {
  655.     static vlc_mutex_t lock = VLC_STATIC_MUTEX;
  656.     static bool initialized = false;
  657.     vlc_mutex_lock (&lock);
  658.     /* Initializes real-time priorities before any thread is created,
  659.      * just once per process. */
  660.     if (!initialized)
  661.     {
  662. #ifndef __APPLE__
  663.         if (config_GetInt (p_libvlc, "rt-priority"))
  664. #endif
  665.         {
  666.             rt_offset = config_GetInt (p_libvlc, "rt-offset");
  667.             rt_priorities = true;
  668.         }
  669.         initialized = true;
  670.     }
  671.     vlc_mutex_unlock (&lock);
  672. }
  673. #else
  674. void vlc_threads_setup (libvlc_int_t *p_libvlc)
  675. {
  676.     (void) p_libvlc;
  677. }
  678. #endif
  679. /**
  680.  * Creates and starts new thread.
  681.  *
  682.  * @param p_handle [OUT] pointer to write the handle of the created thread to
  683.  * @param entry entry point for the thread
  684.  * @param data data parameter given to the entry point
  685.  * @param priority thread priority value
  686.  * @return 0 on success, a standard error code on error.
  687.  */
  688. int vlc_clone (vlc_thread_t *p_handle, void * (*entry) (void *), void *data,
  689.                int priority)
  690. {
  691.     int ret;
  692. #if defined( LIBVLC_USE_PTHREAD )
  693.     pthread_attr_t attr;
  694.     pthread_attr_init (&attr);
  695.     /* Block the signals that signals interface plugin handles.
  696.      * If the LibVLC caller wants to handle some signals by itself, it should
  697.      * block these before whenever invoking LibVLC. And it must obviously not
  698.      * start the VLC signals interface plugin.
  699.      *
  700.      * LibVLC will normally ignore any interruption caused by an asynchronous
  701.      * signal during a system call. But there may well be some buggy cases
  702.      * where it fails to handle EINTR (bug reports welcome). Some underlying
  703.      * libraries might also not handle EINTR properly.
  704.      */
  705.     sigset_t oldset;
  706.     {
  707.         sigset_t set;
  708.         sigemptyset (&set);
  709.         sigdelset (&set, SIGHUP);
  710.         sigaddset (&set, SIGINT);
  711.         sigaddset (&set, SIGQUIT);
  712.         sigaddset (&set, SIGTERM);
  713.         sigaddset (&set, SIGPIPE); /* We don't want this one, really! */
  714.         pthread_sigmask (SIG_BLOCK, &set, &oldset);
  715.     }
  716. #if defined (_POSIX_PRIORITY_SCHEDULING) && (_POSIX_PRIORITY_SCHEDULING >= 0) 
  717.  && defined (_POSIX_THREAD_PRIORITY_SCHEDULING) 
  718.  && (_POSIX_THREAD_PRIORITY_SCHEDULING >= 0)
  719.     if (rt_priorities)
  720.     {
  721.         struct sched_param sp = { .sched_priority = priority + rt_offset, };
  722.         int policy;
  723.         if (sp.sched_priority <= 0)
  724.             sp.sched_priority += sched_get_priority_max (policy = SCHED_OTHER);
  725.         else
  726.             sp.sched_priority += sched_get_priority_min (policy = SCHED_RR);
  727.         pthread_attr_setschedpolicy (&attr, policy);
  728.         pthread_attr_setschedparam (&attr, &sp);
  729.     }
  730. #else
  731.     (void) priority;
  732. #endif
  733.     /* The thread stack size.
  734.      * The lower the value, the less address space per thread, the highest
  735.      * maximum simultaneous threads per process. Too low values will cause
  736.      * stack overflows and weird crashes. Set with caution. Also keep in mind
  737.      * that 64-bits platforms consume more stack than 32-bits one.
  738.      *
  739.      * Thanks to on-demand paging, thread stack size only affects address space
  740.      * consumption. In terms of memory, threads only use what they need
  741.      * (rounded up to the page boundary).
  742.      *
  743.      * For example, on Linux i386, the default is 2 mega-bytes, which supports
  744.      * about 320 threads per processes. */
  745. #define VLC_STACKSIZE (128 * sizeof (void *) * 1024)
  746. #ifdef VLC_STACKSIZE
  747.     ret = pthread_attr_setstacksize (&attr, VLC_STACKSIZE);
  748.     assert (ret == 0); /* fails iif VLC_STACKSIZE is invalid */
  749. #endif
  750.     ret = pthread_create (p_handle, &attr, entry, data);
  751.     pthread_sigmask (SIG_SETMASK, &oldset, NULL);
  752.     pthread_attr_destroy (&attr);
  753. #elif defined( WIN32 ) || defined( UNDER_CE )
  754.     /* When using the MSVCRT C library you have to use the _beginthreadex
  755.      * function instead of CreateThread, otherwise you'll end up with
  756.      * memory leaks and the signal functions not working (see Microsoft
  757.      * Knowledge Base, article 104641) */
  758.     HANDLE hThread;
  759.     vlc_thread_t th = malloc (sizeof (*th));
  760.     if (th == NULL)
  761.         return ENOMEM;
  762.     th->data = data;
  763.     th->entry = entry;
  764. #if defined( UNDER_CE )
  765.     th->cancel_event = CreateEvent (NULL, FALSE, FALSE, NULL);
  766.     if (th->cancel_event == NULL)
  767.     {
  768.         free(th);
  769.         return errno;
  770.     }
  771.     hThread = CreateThread (NULL, 128*1024, vlc_entry, th, CREATE_SUSPENDED, NULL);
  772. #else
  773.     hThread = (HANDLE)(uintptr_t)
  774.         _beginthreadex (NULL, 0, vlc_entry, th, CREATE_SUSPENDED, NULL);
  775. #endif
  776.     if (hThread)
  777.     {
  778. #ifndef UNDER_CE
  779.         /* Thread closes the handle when exiting, duplicate it here
  780.          * to be on the safe side when joining. */
  781.         if (!DuplicateHandle (GetCurrentProcess (), hThread,
  782.                               GetCurrentProcess (), &th->handle, 0, FALSE,
  783.                               DUPLICATE_SAME_ACCESS))
  784.         {
  785.             CloseHandle (hThread);
  786.             free (th);
  787.             return ENOMEM;
  788.         }
  789. #else
  790.         th->handle = hThread;
  791. #endif
  792.         ResumeThread (hThread);
  793.         if (priority)
  794.             SetThreadPriority (hThread, priority);
  795.         ret = 0;
  796.         *p_handle = th;
  797.     }
  798.     else
  799.     {
  800.         ret = errno;
  801.         free (th);
  802.     }
  803. #endif
  804.     return ret;
  805. }
  806. #if defined (WIN32)
  807. /* APC procedure for thread cancellation */
  808. static void CALLBACK vlc_cancel_self (ULONG_PTR dummy)
  809. {
  810.     (void)dummy;
  811.     vlc_control_cancel (VLC_DO_CANCEL);
  812. }
  813. #endif
  814. /**
  815.  * Marks a thread as cancelled. Next time the target thread reaches a
  816.  * cancellation point (while not having disabled cancellation), it will
  817.  * run its cancellation cleanup handler, the thread variable destructors, and
  818.  * terminate. vlc_join() must be used afterward regardless of a thread being
  819.  * cancelled or not.
  820.  */
  821. void vlc_cancel (vlc_thread_t thread_id)
  822. {
  823. #if defined (LIBVLC_USE_PTHREAD_CANCEL)
  824.     pthread_cancel (thread_id);
  825. #elif defined (UNDER_CE)
  826.     SetEvent (thread_id->cancel_event);
  827. #elif defined (WIN32)
  828.     QueueUserAPC (vlc_cancel_self, thread_id->handle, 0);
  829. #else
  830. #   warning vlc_cancel is not implemented!
  831. #endif
  832. }
  833. /**
  834.  * Waits for a thread to complete (if needed), and destroys it.
  835.  * This is a cancellation point; in case of cancellation, the join does _not_
  836.  * occur.
  837.  *
  838.  * @param handle thread handle
  839.  * @param p_result [OUT] pointer to write the thread return value or NULL
  840.  * @return 0 on success, a standard error code otherwise.
  841.  */
  842. void vlc_join (vlc_thread_t handle, void **result)
  843. {
  844. #if defined( LIBVLC_USE_PTHREAD )
  845.     int val = pthread_join (handle, result);
  846.     VLC_THREAD_ASSERT ("joining thread");
  847. #elif defined( UNDER_CE ) || defined( WIN32 )
  848.     do
  849.         vlc_testcancel ();
  850.     while (WaitForSingleObjectEx (handle->handle, INFINITE, TRUE)
  851.                                                         == WAIT_IO_COMPLETION);
  852.     CloseHandle (handle->handle);
  853.     if (result)
  854.         *result = handle->data;
  855. #if defined( UNDER_CE )
  856.     CloseHandle (handle->cancel_event);
  857. #endif
  858.     free (handle);
  859. #endif
  860. }
  861. /**
  862.  * Save the current cancellation state (enabled or disabled), then disable
  863.  * cancellation for the calling thread.
  864.  * This function must be called before entering a piece of code that is not
  865.  * cancellation-safe, unless it can be proven that the calling thread will not
  866.  * be cancelled.
  867.  * @return Previous cancellation state (opaque value for vlc_restorecancel()).
  868.  */
  869. int vlc_savecancel (void)
  870. {
  871.     int state;
  872. #if defined (LIBVLC_USE_PTHREAD_CANCEL)
  873.     int val = pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &state);
  874.     VLC_THREAD_ASSERT ("saving cancellation");
  875. #else
  876.     vlc_cancel_t *nfo = vlc_threadvar_get (cancel_key);
  877.     if (nfo == NULL)
  878.         return false; /* Main thread - cannot be cancelled anyway */
  879.      state = nfo->killable;
  880.      nfo->killable = false;
  881. #endif
  882.     return state;
  883. }
  884. /**
  885.  * Restore the cancellation state for the calling thread.
  886.  * @param state previous state as returned by vlc_savecancel().
  887.  * @return Nothing, always succeeds.
  888.  */
  889. void vlc_restorecancel (int state)
  890. {
  891. #if defined (LIBVLC_USE_PTHREAD_CANCEL)
  892. # ifndef NDEBUG
  893.     int oldstate, val;
  894.     val = pthread_setcancelstate (state, &oldstate);
  895.     /* This should fail if an invalid value for given for state */
  896.     VLC_THREAD_ASSERT ("restoring cancellation");
  897.     if (oldstate != PTHREAD_CANCEL_DISABLE)
  898.          vlc_thread_fatal ("restoring cancellation while not disabled", EINVAL,
  899.                            __func__, __FILE__, __LINE__);
  900. # else
  901.     pthread_setcancelstate (state, NULL);
  902. # endif
  903. #else
  904.     vlc_cancel_t *nfo = vlc_threadvar_get (cancel_key);
  905.     assert (state == false || state == true);
  906.     if (nfo == NULL)
  907.         return; /* Main thread - cannot be cancelled anyway */
  908.     assert (!nfo->killable);
  909.     nfo->killable = state != 0;
  910. #endif
  911. }
  912. /**
  913.  * Issues an explicit deferred cancellation point.
  914.  * This has no effect if thread cancellation is disabled.
  915.  * This can be called when there is a rather slow non-sleeping operation.
  916.  * This is also used to force a cancellation point in a function that would
  917.  * otherwise "not always" be a one (block_FifoGet() is an example).
  918.  */
  919. void vlc_testcancel (void)
  920. {
  921. #if defined (LIBVLC_USE_PTHREAD_CANCEL)
  922.     pthread_testcancel ();
  923. #else
  924.     vlc_cancel_t *nfo = vlc_threadvar_get (cancel_key);
  925.     if (nfo == NULL)
  926.         return; /* Main thread - cannot be cancelled anyway */
  927.     if (nfo->killable && nfo->killed)
  928.     {
  929.         for (vlc_cleanup_t *p = nfo->cleaners; p != NULL; p = p->next)
  930.              p->proc (p->data);
  931. # if defined (LIBVLC_USE_PTHREAD)
  932.         pthread_exit (PTHREAD_CANCELLED);
  933. # elif defined (UNDER_CE)
  934.         ExitThread(0);
  935. # elif defined (WIN32)
  936.         _endthread ();
  937. # else
  938. #  error Not implemented!
  939. # endif
  940.     }
  941. #endif
  942. }
  943. struct vlc_thread_boot
  944. {
  945.     void * (*entry) (vlc_object_t *);
  946.     vlc_object_t *object;
  947. };
  948. static void *thread_entry (void *data)
  949. {
  950.     vlc_object_t *obj = ((struct vlc_thread_boot *)data)->object;
  951.     void *(*func) (vlc_object_t *) = ((struct vlc_thread_boot *)data)->entry;
  952.     free (data);
  953.     msg_Dbg (obj, "thread started");
  954.     func (obj);
  955.     msg_Dbg (obj, "thread ended");
  956.     return NULL;
  957. }
  958. #undef vlc_thread_create
  959. /*****************************************************************************
  960.  * vlc_thread_create: create a thread
  961.  *****************************************************************************
  962.  * Note that i_priority is only taken into account on platforms supporting
  963.  * userland real-time priority threads.
  964.  *****************************************************************************/
  965. int vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line,
  966.                        const char *psz_name, void *(*func) ( vlc_object_t * ),
  967.                        int i_priority )
  968. {
  969.     int i_ret;
  970.     vlc_object_internals_t *p_priv = vlc_internals( p_this );
  971.     struct vlc_thread_boot *boot = malloc (sizeof (*boot));
  972.     if (boot == NULL)
  973.         return errno;
  974.     boot->entry = func;
  975.     boot->object = p_this;
  976.     /* Make sure we don't re-create a thread if the object has already one */
  977.     assert( !p_priv->b_thread );
  978.     p_priv->b_thread = true;
  979.     i_ret = vlc_clone( &p_priv->thread_id, thread_entry, boot, i_priority );
  980.     if( i_ret == 0 )
  981.         msg_Dbg( p_this, "thread (%s) created at priority %d (%s:%d)",
  982.                  psz_name, i_priority, psz_file, i_line );
  983.     else
  984.     {
  985.         p_priv->b_thread = false;
  986.         errno = i_ret;
  987.         msg_Err( p_this, "%s thread could not be created at %s:%d (%m)",
  988.                          psz_name, psz_file, i_line );
  989.     }
  990.     return i_ret;
  991. }
  992. /*****************************************************************************
  993.  * vlc_thread_set_priority: set the priority of the current thread when we
  994.  * couldn't set it in vlc_thread_create (for instance for the main thread)
  995.  *****************************************************************************/
  996. int __vlc_thread_set_priority( vlc_object_t *p_this, const char * psz_file,
  997.                                int i_line, int i_priority )
  998. {
  999.     vlc_object_internals_t *p_priv = vlc_internals( p_this );
  1000.     if( !p_priv->b_thread )
  1001.     {
  1002.         msg_Err( p_this, "couldn't set priority of non-existent thread" );
  1003.         return ESRCH;
  1004.     }
  1005. #if defined( LIBVLC_USE_PTHREAD )
  1006. # ifndef __APPLE__
  1007.     if( config_GetInt( p_this, "rt-priority" ) > 0 )
  1008. # endif
  1009.     {
  1010.         int i_error, i_policy;
  1011.         struct sched_param param;
  1012.         memset( &param, 0, sizeof(struct sched_param) );
  1013.         if( config_GetType( p_this, "rt-offset" ) )
  1014.             i_priority += config_GetInt( p_this, "rt-offset" );
  1015.         if( i_priority <= 0 )
  1016.         {
  1017.             param.sched_priority = (-1) * i_priority;
  1018.             i_policy = SCHED_OTHER;
  1019.         }
  1020.         else
  1021.         {
  1022.             param.sched_priority = i_priority;
  1023.             i_policy = SCHED_RR;
  1024.         }
  1025.         if( (i_error = pthread_setschedparam( p_priv->thread_id,
  1026.                                               i_policy, &param )) )
  1027.         {
  1028.             errno = i_error;
  1029.             msg_Warn( p_this, "couldn't set thread priority (%s:%d): %m",
  1030.                       psz_file, i_line );
  1031.             i_priority = 0;
  1032.         }
  1033.     }
  1034. #elif defined( WIN32 ) || defined( UNDER_CE )
  1035.     VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
  1036.     if( !SetThreadPriority(p_priv->thread_id->handle, i_priority) )
  1037.     {
  1038.         msg_Warn( p_this, "couldn't set a faster priority" );
  1039.         return 1;
  1040.     }
  1041. #endif
  1042.     return 0;
  1043. }
  1044. /*****************************************************************************
  1045.  * vlc_thread_join: wait until a thread exits, inner version
  1046.  *****************************************************************************/
  1047. void __vlc_thread_join( vlc_object_t *p_this )
  1048. {
  1049.     vlc_object_internals_t *p_priv = vlc_internals( p_this );
  1050. #if defined( LIBVLC_USE_PTHREAD )
  1051.     vlc_join (p_priv->thread_id, NULL);
  1052. #elif defined( UNDER_CE ) || defined( WIN32 )
  1053.     HANDLE hThread;
  1054.     FILETIME create_ft, exit_ft, kernel_ft, user_ft;
  1055.     int64_t real_time, kernel_time, user_time;
  1056. #ifndef UNDER_CE
  1057.     if( ! DuplicateHandle(GetCurrentProcess(),
  1058.             p_priv->thread_id->handle,
  1059.             GetCurrentProcess(),
  1060.             &hThread,
  1061.             0,
  1062.             FALSE,
  1063.             DUPLICATE_SAME_ACCESS) )
  1064.     {
  1065.         p_priv->b_thread = false;
  1066.         return; /* We have a problem! */
  1067.     }
  1068. #else
  1069.     hThread = p_priv->thread_id->handle;
  1070. #endif
  1071.     vlc_join( p_priv->thread_id, NULL );
  1072.     if( GetThreadTimes( hThread, &create_ft, &exit_ft, &kernel_ft, &user_ft ) )
  1073.     {
  1074.         real_time =
  1075.           ((((int64_t)exit_ft.dwHighDateTime)<<32)| exit_ft.dwLowDateTime) -
  1076.           ((((int64_t)create_ft.dwHighDateTime)<<32)| create_ft.dwLowDateTime);
  1077.         real_time /= 10;
  1078.         kernel_time =
  1079.           ((((int64_t)kernel_ft.dwHighDateTime)<<32)|
  1080.            kernel_ft.dwLowDateTime) / 10;
  1081.         user_time =
  1082.           ((((int64_t)user_ft.dwHighDateTime)<<32)|
  1083.            user_ft.dwLowDateTime) / 10;
  1084.         msg_Dbg( p_this, "thread times: "
  1085.                  "real %"PRId64"m%fs, kernel %"PRId64"m%fs, user %"PRId64"m%fs",
  1086.                  real_time/60/1000000,
  1087.                  (double)((real_time%(60*1000000))/1000000.0),
  1088.                  kernel_time/60/1000000,
  1089.                  (double)((kernel_time%(60*1000000))/1000000.0),
  1090.                  user_time/60/1000000,
  1091.                  (double)((user_time%(60*1000000))/1000000.0) );
  1092.     }
  1093.     CloseHandle( hThread );
  1094. #else
  1095.     vlc_join( p_priv->thread_id, NULL );
  1096. #endif
  1097.     p_priv->b_thread = false;
  1098. }
  1099. void vlc_thread_cancel (vlc_object_t *obj)
  1100. {
  1101.     vlc_object_internals_t *priv = vlc_internals (obj);
  1102.     if (priv->b_thread)
  1103.         vlc_cancel (priv->thread_id);
  1104. }
  1105. void vlc_control_cancel (int cmd, ...)
  1106. {
  1107.     /* NOTE: This function only modifies thread-specific data, so there is no
  1108.      * need to lock anything. */
  1109. #ifdef LIBVLC_USE_PTHREAD_CANCEL
  1110.     (void) cmd;
  1111.     assert (0);
  1112. #else
  1113.     va_list ap;
  1114.     vlc_cancel_t *nfo = vlc_threadvar_get (cancel_key);
  1115.     if (nfo == NULL)
  1116.     {
  1117. #ifdef WIN32
  1118.         /* Main thread - cannot be cancelled anyway */
  1119.         return;
  1120. #else
  1121.         nfo = malloc (sizeof (*nfo));
  1122.         if (nfo == NULL)
  1123.             return; /* Uho! Expect problems! */
  1124.         *nfo = VLC_CANCEL_INIT;
  1125.         vlc_threadvar_set (cancel_key, nfo);
  1126. #endif
  1127.     }
  1128.     va_start (ap, cmd);
  1129.     switch (cmd)
  1130.     {
  1131.         case VLC_DO_CANCEL:
  1132.             nfo->killed = true;
  1133.             break;
  1134.         case VLC_CLEANUP_PUSH:
  1135.         {
  1136.             /* cleaner is a pointer to the caller stack, no need to allocate
  1137.              * and copy anything. As a nice side effect, this cannot fail. */
  1138.             vlc_cleanup_t *cleaner = va_arg (ap, vlc_cleanup_t *);
  1139.             cleaner->next = nfo->cleaners;
  1140.             nfo->cleaners = cleaner;
  1141.             break;
  1142.         }
  1143.         case VLC_CLEANUP_POP:
  1144.         {
  1145.             nfo->cleaners = nfo->cleaners->next;
  1146.             break;
  1147.         }
  1148.     }
  1149.     va_end (ap);
  1150. #endif
  1151. }