Title: [183240] trunk/Source/_javascript_Core
Revision
183240
Author
[email protected]
Date
2015-04-23 21:01:12 -0700 (Thu, 23 Apr 2015)

Log Message

Web Inspector: Speculative fix for non-main thread auto-attach failures
https://bugs.webkit.org/show_bug.cgi?id=144134

Patch by Joseph Pecoraro <[email protected]> on 2015-04-23
Reviewed by Timothy Hatcher.

* inspector/remote/RemoteInspector.mm:
(Inspector::RemoteInspector::singleton):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (183239 => 183240)


--- trunk/Source/_javascript_Core/ChangeLog	2015-04-24 03:49:12 UTC (rev 183239)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-04-24 04:01:12 UTC (rev 183240)
@@ -1,3 +1,13 @@
+2015-04-23  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Speculative fix for non-main thread auto-attach failures
+        https://bugs.webkit.org/show_bug.cgi?id=144134
+
+        Reviewed by Timothy Hatcher.
+
+        * inspector/remote/RemoteInspector.mm:
+        (Inspector::RemoteInspector::singleton):
+
 2015-04-23  Basile Clement  <[email protected]>
 
         Allow function allocation sinking

Modified: trunk/Source/_javascript_Core/inspector/remote/RemoteInspector.mm (183239 => 183240)


--- trunk/Source/_javascript_Core/inspector/remote/RemoteInspector.mm	2015-04-24 03:49:12 UTC (rev 183239)
+++ trunk/Source/_javascript_Core/inspector/remote/RemoteInspector.mm	2015-04-24 04:01:12 UTC (rev 183240)
@@ -94,7 +94,7 @@
             if ([NSThread isMainThread])
                 initialize();
             else
-                dispatch_async(dispatch_get_main_queue(), initialize);
+                dispatch_sync(dispatch_get_main_queue(), initialize);
         }
     });
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to