Title: [228154] trunk/Source/WTF
Revision
228154
Author
[email protected]
Date
2018-02-06 02:55:31 -0800 (Tue, 06 Feb 2018)

Log Message

[GTK] fast/events/message-channel-gc-4.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=182104

Patch by Fujii Hironori <[email protected]> on 2018-02-06
Reviewed by Carlos Garcia Campos.

Revert r228001 because RunLoop::current isn't called in GC thread
anymore since r228152.

* wtf/RunLoop.cpp:
(WTF::RunLoop::current): Removed a template argument
CanBeGCThread::True of ThreadSpecific.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (228153 => 228154)


--- trunk/Source/WTF/ChangeLog	2018-02-06 09:45:49 UTC (rev 228153)
+++ trunk/Source/WTF/ChangeLog	2018-02-06 10:55:31 UTC (rev 228154)
@@ -1,3 +1,17 @@
+2018-02-06  Fujii Hironori  <[email protected]>
+
+        [GTK] fast/events/message-channel-gc-4.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=182104
+
+        Reviewed by Carlos Garcia Campos.
+
+        Revert r228001 because RunLoop::current isn't called in GC thread
+        anymore since r228152.
+
+        * wtf/RunLoop.cpp:
+        (WTF::RunLoop::current): Removed a template argument
+        CanBeGCThread::True of ThreadSpecific.
+
 2018-02-05  Konstantin Tokarev  <[email protected]>
 
         [cmake] Fix build with ICU configured without collation support

Modified: trunk/Source/WTF/wtf/RunLoop.cpp (228153 => 228154)


--- trunk/Source/WTF/wtf/RunLoop.cpp	2018-02-06 09:45:49 UTC (rev 228153)
+++ trunk/Source/WTF/wtf/RunLoop.cpp	2018-02-06 10:55:31 UTC (rev 228154)
@@ -58,7 +58,7 @@
 
 RunLoop& RunLoop::current()
 {
-    static NeverDestroyed<ThreadSpecific<Holder, CanBeGCThread::True>> runLoopHolder;
+    static NeverDestroyed<ThreadSpecific<Holder>> runLoopHolder;
     return runLoopHolder.get()->runLoop();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to