Title: [249092] trunk/Source/WTF
Revision
249092
Author
hironori.fu...@sony.com
Date
2019-08-25 18:51:57 -0700 (Sun, 25 Aug 2019)

Log Message

Regression(r248533) Assertion hit in isMainThread() for some clients using WTF because the main thread is not initialized
https://bugs.webkit.org/show_bug.cgi?id=201083
<rdar://problem/54651993>

Unreviewed build fox for Windows.

* wtf/win/MainThreadWin.cpp:
(WTF::isMainThreadInitialized): Added.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (249091 => 249092)


--- trunk/Source/WTF/ChangeLog	2019-08-25 02:14:30 UTC (rev 249091)
+++ trunk/Source/WTF/ChangeLog	2019-08-26 01:51:57 UTC (rev 249092)
@@ -1,3 +1,14 @@
+2019-08-25  Fujii Hironori  <hironori.fu...@sony.com>
+
+        Regression(r248533) Assertion hit in isMainThread() for some clients using WTF because the main thread is not initialized
+        https://bugs.webkit.org/show_bug.cgi?id=201083
+        <rdar://problem/54651993>
+
+        Unreviewed build fox for Windows.
+
+        * wtf/win/MainThreadWin.cpp:
+        (WTF::isMainThreadInitialized): Added.
+
 2019-08-23  Jiewen Tan  <jiewen_...@apple.com>
 
         Unreviewed, build fix after r249059

Modified: trunk/Source/WTF/wtf/win/MainThreadWin.cpp (249091 => 249092)


--- trunk/Source/WTF/wtf/win/MainThreadWin.cpp	2019-08-25 02:14:30 UTC (rev 249091)
+++ trunk/Source/WTF/wtf/win/MainThreadWin.cpp	2019-08-26 01:51:57 UTC (rev 249092)
@@ -82,6 +82,11 @@
     return isMainThread();
 }
 
+bool isMainThreadInitialized()
+{
+    return true;
+}
+
 void scheduleDispatchFunctionsOnMainThread()
 {
     ASSERT(threadingWindowHandle);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to