Changeset 222772 in webkit


Ignore:
Timestamp:
Oct 3, 2017 1:12:19 AM (7 years ago)
Author:
Carlos Garcia Campos
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):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r222761 r222772  
     12017-10-03  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK][WPE] WebProcess should run cleanup on quit to release resources
     4        https://bugs.webkit.org/show_bug.cgi?id=168126
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        Do not call exit on sync message send failure for GTK and WPE ports.
     9
     10        * WebProcess/WebProcess.cpp:
     11        (WebKit::WebProcess::initializeConnection):
     12
    1132017-10-02  Ryosuke Niwa  <rniwa@webkit.org>
    214
  • trunk/Source/WebKit/WebProcess/WebProcess.cpp

    r222619 r222772  
    217217    ChildProcess::initializeConnection(connection);
    218218
     219#if !PLATFORM(GTK) && !PLATFORM(WPE)
    219220    connection->setShouldExitOnSyncMessageSendFailure(true);
     221#endif
    220222
    221223#if HAVE(QOS_CLASSES)
Note: See TracChangeset for help on using the changeset viewer.