Title: [164883] trunk/Source/WebKit2
Revision
164883
Author
psola...@apple.com
Date
2014-02-28 14:10:56 -0800 (Fri, 28 Feb 2014)

Log Message

[iOS][WebKit2] Don't grab mach exception port on iOS
https://bugs.webkit.org/show_bug.cgi?id=129505
<rdar://problem/15972749>

Reviewed by Anders Carlsson.

Don't grab the mach exception port on iOS so we get crash logs for web process and network
process.

* Shared/ChildProcessProxy.cpp:
(WebKit::ChildProcessProxy::didFinishLaunching):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (164882 => 164883)


--- trunk/Source/WebKit2/ChangeLog	2014-02-28 21:43:18 UTC (rev 164882)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-28 22:10:56 UTC (rev 164883)
@@ -1,3 +1,17 @@
+2014-02-28  Pratik Solanki  <psola...@apple.com>
+
+        [iOS][WebKit2] Don't grab mach exception port on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=129505
+        <rdar://problem/15972749>
+
+        Reviewed by Anders Carlsson.
+
+        Don't grab the mach exception port on iOS so we get crash logs for web process and network
+        process.
+
+        * Shared/ChildProcessProxy.cpp:
+        (WebKit::ChildProcessProxy::didFinishLaunching):
+
 2014-02-28  Brent Fulgham  <bfulg...@apple.com>
 
         Unreviewed build fix after r164832.

Modified: trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp (164882 => 164883)


--- trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp	2014-02-28 21:43:18 UTC (rev 164882)
+++ trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp	2014-02-28 22:10:56 UTC (rev 164883)
@@ -128,7 +128,7 @@
     ASSERT(!m_connection);
 
     m_connection = IPC::Connection::createServerConnection(connectionIdentifier, this, RunLoop::main());
-#if OS(DARWIN)
+#if PLATFORM(MAC)
     m_connection->setShouldCloseConnectionOnMachExceptions();
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to