]> git.sesse.net Git - vlc/commitdiff
modules/gui/macosx.m: Make sure the module will terminate after a Ctrl-C from a term.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 23 Feb 2008 22:14:13 +0000 (22:14 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 23 Feb 2008 22:14:13 +0000 (22:14 +0000)
modules/gui/macosx/intf.m

index b1745acb1f48bf7fb6bf7cbf0d9c4a0acf43c0ae..ac2261b3a6833ba7d04d29d6fea438327bce9f4e 100644 (file)
@@ -124,6 +124,27 @@ void E_(CloseIntf) ( vlc_object_t *p_this )
     free( p_intf->p_sys );
 }
 
+/*****************************************************************************
+ * KillerThread: Thread that kill the application
+ *****************************************************************************/
+static void * KillerThread( void *user_data )
+{
+    NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
+
+    intf_thread_t *p_intf = user_data;
+    
+    vlc_object_lock ( p_intf );
+    while( vlc_object_alive( p_intf ) )
+        vlc_object_wait( p_intf );
+    vlc_object_unlock( p_intf );
+
+    msg_Dbg( p_intf, "Killing the Mac OS X module\n" );
+
+    /* We are dead, terminate */
+    [NSApp terminate: nil];
+    [o_pool release];
+    return NULL;
+}
 /*****************************************************************************
  * Run: main loop
  *****************************************************************************/
@@ -157,6 +178,10 @@ static void Run( intf_thread_t *p_intf )
     [[VLCMain sharedInstance] setIntf: p_intf];
     [NSBundle loadNibNamed: @"MainMenu" owner: NSApp];
 
+    /* Setup a thread that will monitor the module killing */
+    pthread_t killer_thread;
+    pthread_create( &killer_thread, NULL, KillerThread, p_intf );
+
     /* Install a jmpbuffer to where we can go back before the NSApp exit
      * see applicationWillTerminate: */
     if(setjmp(jmpbuffer) == 0)