Title: [222772] trunk/Source/WebKit
Revision
222772
Author
[email protected]
Date
2017-10-03 01:12:19 -0700 (Tue, 03 Oct 2017)

Log Message

[GTK][WPE] WebProcess should run cleanup on quit to release resources
https://bugs.webkit.org/show_bug.cgi?id=168126

Reviewed by Michael Catanzaro.

Do not call exit on sync message send failure for GTK and WPE ports.

* WebProcess/WebProcess.cpp:
(WebKit::WebProcess::initializeConnection):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (222771 => 222772)


--- trunk/Source/WebKit/ChangeLog	2017-10-03 06:42:22 UTC (rev 222771)
+++ trunk/Source/WebKit/ChangeLog	2017-10-03 08:12:19 UTC (rev 222772)
@@ -1,3 +1,15 @@
+2017-10-03  Carlos Garcia Campos  <[email protected]>
+
+        [GTK][WPE] WebProcess should run cleanup on quit to release resources
+        https://bugs.webkit.org/show_bug.cgi?id=168126
+
+        Reviewed by Michael Catanzaro.
+
+        Do not call exit on sync message send failure for GTK and WPE ports.
+
+        * WebProcess/WebProcess.cpp:
+        (WebKit::WebProcess::initializeConnection):
+
 2017-10-02  Ryosuke Niwa  <[email protected]>
 
         Move more code into PasteboardCustomData

Modified: trunk/Source/WebKit/WebProcess/WebProcess.cpp (222771 => 222772)


--- trunk/Source/WebKit/WebProcess/WebProcess.cpp	2017-10-03 06:42:22 UTC (rev 222771)
+++ trunk/Source/WebKit/WebProcess/WebProcess.cpp	2017-10-03 08:12:19 UTC (rev 222772)
@@ -216,7 +216,9 @@
 {
     ChildProcess::initializeConnection(connection);
 
+#if !PLATFORM(GTK) && !PLATFORM(WPE)
     connection->setShouldExitOnSyncMessageSendFailure(true);
+#endif
 
 #if HAVE(QOS_CLASSES)
     connection->setShouldBoostMainThreadOnSyncMessage(true);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to