Bug 135366 - Web process crash causes UI process to die with an assertion failure in Connection::exceptionSourceEventHandler
Summary: Web process crash causes UI process to die with an assertion failure in Conne...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit2 (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Mark Rowe (bdash)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-07-28 16:18 PDT by Mark Rowe (bdash)
Modified: 2014-07-28 17:56 PDT (History)
3 users (show)

See Also:


Attachments
Patch (1.59 KB, patch)
2014-07-28 16:21 PDT, Mark Rowe (bdash)
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mark Rowe (bdash) 2014-07-28 16:18:34 PDT
I've been hitting the following assertion several times a day:

    // Now send along the message.
    kern_return_t kr = mach_msg(header, MACH_SEND_MSG, header->msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
    if (kr != KERN_SUCCESS) {
        LOG_ERROR("Failed to send message to real exception port. %s (%x)", mach_error_string(kr), kr);
        ASSERT_NOT_REACHED();
    }

It typically happens after the web process hits an assertion failure of some sort. Having the UI process die when a web process dies interferes with development.
Comment 1 Mark Rowe (bdash) 2014-07-28 16:21:36 PDT
Created attachment 235636 [details]
Patch
Comment 2 WebKit Commit Bot 2014-07-28 17:56:37 PDT
Comment on attachment 235636 [details]
Patch

Clearing flags on attachment: 235636

Committed r171715: <http://trac.webkit.org/changeset/171715>
Comment 3 WebKit Commit Bot 2014-07-28 17:56:39 PDT
All reviewed patches have been landed.  Closing bug.