Changeset 249092 in webkit


Ignore:
Timestamp:
Aug 25, 2019 6:51:57 PM (5 years ago)
Author:
Fujii Hironori
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.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r249068 r249092  
     12019-08-25  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        Regression(r248533) Assertion hit in isMainThread() for some clients using WTF because the main thread is not initialized
     4        https://bugs.webkit.org/show_bug.cgi?id=201083
     5        <rdar://problem/54651993>
     6
     7        Unreviewed build fox for Windows.
     8
     9        * wtf/win/MainThreadWin.cpp:
     10        (WTF::isMainThreadInitialized): Added.
     11
    1122019-08-23  Jiewen Tan  <jiewen_tan@apple.com>
    213
  • trunk/Source/WTF/wtf/win/MainThreadWin.cpp

    r242694 r249092  
    8383}
    8484
     85bool isMainThreadInitialized()
     86{
     87    return true;
     88}
     89
    8590void scheduleDispatchFunctionsOnMainThread()
    8691{
Note: See TracChangeset for help on using the changeset viewer.