Bug 62094

Summary: [Mac WebKit2] REGRESSION (r86692): Synchronous XMLHttpRequest hangs in credential shim (affects Netgear ReadyNAS admin page)
Product: WebKit Reporter: Darin Adler <darin>
Component: Page LoadingAssignee: Darin Adler <darin>
Status: RESOLVED FIXED    
Severity: Normal CC: ap
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch andersca: review+

Description Darin Adler 2011-06-04 12:26:35 PDT
REGRESSION (r86692): Synchronous XMLHttpRequest hangs in credential shim (affects Netgear ReadyNAS admin page)
Comment 1 Darin Adler 2011-06-04 12:30:40 PDT
Created attachment 96030 [details]
Patch
Comment 2 Anders Carlsson 2011-06-04 12:37:14 PDT
Comment on attachment 96030 [details]
Patch

I don't think CoreIPCThread is a good name, it might be mistaken for the CoreIPC work queue that sends/receives message.

a CoreIPC connection has the notion of a "client run loop" where incoming messages will be dispatched. Maybe callOnCoreIPCClientRunLoopAndWait is a better name.
Comment 3 Darin Adler 2011-06-04 12:48:00 PDT
(In reply to comment #2)
> Maybe callOnCoreIPCClientRunLoopAndWait is a better name.

Sure thing; I’ll change to that name.

Any ideas for better names for the source files CoreIPCThread.h/mm?
Comment 4 Darin Adler 2011-06-04 13:16:13 PDT
Created attachment 96031 [details]
Patch
Comment 5 Darin Adler 2011-06-04 14:03:35 PDT
Committed r88123: <http://trac.webkit.org/changeset/88123>
Comment 6 Darin Adler 2011-06-04 14:04:03 PDT
Comment on attachment 96031 [details]
Patch

The patch I landed also included a FIXME comment explaining we could do this with work items instead.