]> git.sesse.net Git - vlc/commitdiff
Fix abortion if killing signals are re-used.
authorRémi Denis-Courmont <rem@videolan.org>
Thu, 1 Mar 2007 17:52:11 +0000 (17:52 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Thu, 1 Mar 2007 17:52:11 +0000 (17:52 +0000)
Of course, VLC has no bugs, so you never need to abort it that way,
so that this fixes nothing.

include/vlc_threads.h
src/vlc.c

index 20a5e78c157111df2f88bd659d1e0bf61e5c87c5..cc62078e86c7b6dfe1a0515d7ea5aa3355dd28fb 100644 (file)
@@ -56,6 +56,7 @@
 
 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )  /* pthreads (like Linux & BSD) */
 #   define LIBVLC_USE_PTHREAD 1
+#   define _APPLE_C_SOURCE    1 /* Proper pthread semantics on OSX */
 
 #   include <pthread.h>
 #   ifdef DEBUG
index 499eeb9aac4783046635a85d6aa07988c5d52f62..bdf21e7bc6f1482559210eaef8131ba5ab331745 100644 (file)
--- a/src/vlc.c
+++ b/src/vlc.c
 
 #include "config.h"
 
+#include <vlc/vlc.h>
 #include <stdio.h>                                              /* fprintf() */
 #include <stdlib.h>                                  /* putenv(), strtol(),  */
-#ifdef HAVE_SIGNAL_H
-#   include <signal.h>                            /* SIGHUP, SIGINT, SIGKILL */
-#endif
-#ifdef HAVE_TIME_H
-#   include <time.h>                                               /* time() */
-#endif
-#ifdef HAVE_PTHREAD_H
-#   include <pthread.h>
-#endif
 
-#include <vlc/vlc.h>
 
+/*****************************************************************************
+ * Local prototypes.
+ *****************************************************************************/
 #ifdef WIN32
 #include <windows.h>
 extern void __wgetmainargs(int *argc, wchar_t ***wargv, wchar_t ***wenviron,
                            int expand_wildcards, int *startupinfo);
-#endif
+#else
 
-/*****************************************************************************
- * Local prototypes.
- *****************************************************************************/
-#if !defined(WIN32) && !defined(UNDER_CE)
-static void *SigHandler  ( void *set );
+# include <signal.h>
+# include <time.h>
+# include <pthread.h>
+# include <stdbool.h>
+
+static struct
+{
+    bool flag;
+    pthread_mutex_t lock;
+} live = { true, PTHREAD_MUTEX_INITIALIZER };
+
+static void *SigHandler (void *set);
 #endif
 
 /*****************************************************************************
@@ -171,17 +172,17 @@ int main( int i_argc, char *ppsz_argv[] )
 
     i_ret = VLC_AddIntf( 0, NULL, VLC_TRUE, VLC_TRUE );
 
-#if !defined(WIN32) && !defined(UNDER_CE)
-    pthread_cancel (sigth);
-    pthread_join (sigth, NULL);
-#endif
-
     /* Finish the threads */
     VLC_CleanUp( 0 );
 
     /* Destroy the libvlc structure */
     VLC_Destroy( 0 );
 
+#if !defined(WIN32) && !defined(UNDER_CE)
+    pthread_cancel (sigth);
+    pthread_join (sigth, NULL);
+#endif
+
     return i_ret;
 }
 
@@ -192,7 +193,7 @@ int main( int i_argc, char *ppsz_argv[] )
  * This thread receives all handled signals synchronously.
  * It tries to end the program in a clean way.
  *****************************************************************************/
-static void *SigHandler( void *data )
+static void *SigHandler (void *data)
 {
     const sigset_t *set = (sigset_t *)data;
     time_t abort_time = 0;
@@ -208,23 +209,29 @@ static void *SigHandler( void *data )
          * signals to a libvlc structure having been destroyed */
 
         pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &state);
-        if( !b_die )
+        if (!b_die)
         {
             b_die = VLC_TRUE;
-            abort_time = time( NULL );
+            abort_time = time (NULL);
 
-            fprintfstderr, "signal %d received, terminating vlc - do it "
-                            "again in case it gets stuck\n", i_signal );
+            fprintf (stderr, "signal %d received, terminating vlc - do it "
+                            "again in case it gets stuck\n", i_signal);
 
             /* Acknowledge the signal received */
-            VLC_Die( 0 );
+            pthread_mutex_lock (&live.lock);
+            if (live.flag)
+            {
+                VLC_Die (0);
+                live.flag = false;
+            }
+            pthread_mutex_unlock (&live.lock);
         }
         else if( time( NULL ) > abort_time + 2 )
         {
             /* If user asks again 1 or 2 seconds later, die badly */
             pthread_sigmask (SIG_UNBLOCK, set, NULL);
-            fprintf( stderr, "user insisted too much, dying badly\n" );
-            abort();
+            fprintf (stderr, "user insisted too much, dying badly\n");
+            abort ();
         }
         pthread_setcancelstate (state, NULL);
     }