[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc
abecsi at webkit.org
abecsi at webkit.org
Wed Dec 22 15:54:23 UTC 2010
The following commit has been merged in the debian/experimental branch:
commit 0c9efb8742fb6dc76ad847e0a9c79db3fa8ca631
Author: abecsi at webkit.org <abecsi at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Nov 16 13:10:31 2010 +0000
2010-11-16 Andras Becsi <abecsi at webkit.org>
Reviewed by Andreas Kling.
[Qt] Use SIGINT instead of SIGKILL to let the web process clean up after itself.
* UIProcess/Launcher/qt/ProcessLauncherQt.cpp:
(WebKit::QtWebProcess::setupChildProcess):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72088 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index a6ef4f2..17a29e5 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,12 @@
+2010-11-16 Andras Becsi <abecsi at webkit.org>
+
+ Reviewed by Andreas Kling.
+
+ [Qt] Use SIGINT instead of SIGKILL to let the web process clean up after itself.
+
+ * UIProcess/Launcher/qt/ProcessLauncherQt.cpp:
+ (WebKit::QtWebProcess::setupChildProcess):
+
2010-11-16 Kenneth Rohde Christiansen <kenneth at webkit.org>
Reviewed by Andreas Kling.
diff --git a/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp b/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp
index 1c2c6e1..227ebaa 100644
--- a/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp
+++ b/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp
@@ -86,7 +86,7 @@ protected:
void QtWebProcess::setupChildProcess()
{
#if defined Q_OS_UNIX
- prctl(PR_SET_PDEATHSIG, SIGKILL);
+ prctl(PR_SET_PDEATHSIG, SIGINT);
#endif
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list