gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog plugin/plugin.cpp


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog plugin/plugin.cpp
Date: Sat, 09 Sep 2006 21:00:57 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/09/09 21:00:57

Modified files:
        .              : ChangeLog 
        plugin         : plugin.cpp 

Log message:
                * plugin/plugin.cpp: removed the waitpid call again
                  (see bug #17082).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.816&r2=1.817
http://cvs.savannah.gnu.org/viewcvs/gnash/plugin/plugin.cpp?cvsroot=gnash&r1=1.51&r2=1.52

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.816
retrieving revision 1.817
diff -u -b -r1.816 -r1.817
--- ChangeLog   8 Sep 2006 15:22:59 -0000       1.816
+++ ChangeLog   9 Sep 2006 21:00:56 -0000       1.817
@@ -1,3 +1,8 @@
+2006-09-09 Sandro Santilli  <address@hidden>
+
+       * plugin/plugin.cpp: removed the waitpid call again
+         (see bug #17082).
+
 2006-09-08 Sandro Santilli  <address@hidden>
 
        * plugin/plugin.cpp, plugin/plugin.h: wait for child pid

Index: plugin/plugin.cpp
===================================================================
RCS file: /sources/gnash/gnash/plugin/plugin.cpp,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -b -r1.51 -r1.52
--- plugin/plugin.cpp   8 Sep 2006 15:22:59 -0000       1.51
+++ plugin/plugin.cpp   9 Sep 2006 21:00:57 -0000       1.52
@@ -307,7 +307,9 @@
     if (_childpid) {
        kill(_childpid, SIGINT);
        int status;
-       waitpid(_childpid, &status, 0);
+       // it seems that waiting here hangs firefox IFF not run
+       // from the console (see bug#17082).
+       //waitpid(_childpid, &status, 0);
        dbglogfile << "Child process exited with status " << status << endl;    
     }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]