Changeset 164883 in webkit


Ignore:
Timestamp:
Feb 28, 2014 2:10:56 PM (10 years ago)
Author:
psolanki@apple.com
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):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r164879 r164883  
     12014-02-28  Pratik Solanki  <psolanki@apple.com>
     2
     3        [iOS][WebKit2] Don't grab mach exception port on iOS
     4        https://bugs.webkit.org/show_bug.cgi?id=129505
     5        <rdar://problem/15972749>
     6
     7        Reviewed by Anders Carlsson.
     8
     9        Don't grab the mach exception port on iOS so we get crash logs for web process and network
     10        process.
     11
     12        * Shared/ChildProcessProxy.cpp:
     13        (WebKit::ChildProcessProxy::didFinishLaunching):
     14
    1152014-02-28  Brent Fulgham  <bfulgham@apple.com>
    216
  • trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp

    r164832 r164883  
    129129
    130130    m_connection = IPC::Connection::createServerConnection(connectionIdentifier, this, RunLoop::main());
    131 #if OS(DARWIN)
     131#if PLATFORM(MAC)
    132132    m_connection->setShouldCloseConnectionOnMachExceptions();
    133133#endif
Note: See TracChangeset for help on using the changeset viewer.