X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fmisc%2Fscreensaver.c;h=80c42ffa26739e66ad836a77be6d61740e7bc474;hb=b7513df506e5b81b19ffadc08973ef83a2825b72;hp=859417a53654f184b7fca701fff3bc3be686e7c3;hpb=724f40098f3029aabae9b97d90185ba9c73f74df;p=vlc diff --git a/modules/misc/screensaver.c b/modules/misc/screensaver.c index 859417a536..80c42ffa26 100644 --- a/modules/misc/screensaver.c +++ b/modules/misc/screensaver.c @@ -26,6 +26,10 @@ * Preamble *****************************************************************************/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include @@ -36,6 +40,10 @@ #include #include +#ifdef HAVE_SIGNAL_H +# include +#endif + #ifdef HAVE_DBUS #define DBUS_API_SUBJECT_TO_CHANGE @@ -134,17 +142,22 @@ static void Deactivate( vlc_object_t *p_this ) *****************************************************************************/ static void Execute( intf_thread_t *p_this, const char *const *ppsz_args ) { - pid_t pid; - switch( pid = fork() ) + pid_t pid = fork(); + switch( pid ) { case 0: /* we're the child */ + { + sigset_t set; + sigemptyset (&set); + pthread_sigmask (SIG_SETMASK, &set, NULL); + /* We don't want output */ - fclose( stdout ); - fclose( stderr ); - execv( ppsz_args[0] , (char *const *)ppsz_args ); + if( ( freopen( "/dev/null", "w", stdout ) != NULL ) + && ( freopen( "/dev/null", "w", stderr ) != NULL ) ) + execv( ppsz_args[0] , (char *const *)ppsz_args ); /* If the file we want to execute doesn't exist we exit() */ - exit( -1 ); - break; + exit( EXIT_FAILURE ); + } case -1: /* we're the error */ msg_Dbg( p_this, "Couldn't fork() while launching %s", ppsz_args[0] ); @@ -152,7 +165,7 @@ static void Execute( intf_thread_t *p_this, const char *const *ppsz_args ) default: /* we're the parent */ /* Wait for the child to exit. * We will not deadlock because we ran "/bin/sh &" */ - waitpid( pid, NULL, 0 ); + while( waitpid( pid, NULL, 0 ) != pid); break; } } @@ -165,18 +178,19 @@ static void Execute( intf_thread_t *p_this, const char *const *ppsz_args ) *****************************************************************************/ static void Run( intf_thread_t *p_intf ) { + vlc_object_lock( p_intf ); + #ifdef HAVE_DBUS p_intf->p_sys->p_connection = dbus_init( p_intf ); #endif - vlc_object_lock( p_intf ); - for(;;) + while( vlc_object_alive( p_intf ) ) { vlc_object_t *p_vout; /* Check screensaver every 30 seconds */ if( vlc_object_timedwait( p_intf, mdate() + 30000000 ) < 0 ) - break; + continue; p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );