Changeset 228154 in webkit


Ignore:
Timestamp:
Feb 6, 2018 2:55:31 AM (6 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Fujii Hironori <Fujii Hironori> 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.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r228136 r228154  
     12018-02-06  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [GTK] fast/events/message-channel-gc-4.html is flaky
     4        https://bugs.webkit.org/show_bug.cgi?id=182104
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Revert r228001 because RunLoop::current isn't called in GC thread
     9        anymore since r228152.
     10
     11        * wtf/RunLoop.cpp:
     12        (WTF::RunLoop::current): Removed a template argument
     13        CanBeGCThread::True of ThreadSpecific.
     14
    1152018-02-05  Konstantin Tokarev  <annulen@yandex.ru>
    216
  • trunk/Source/WTF/wtf/RunLoop.cpp

    r228001 r228154  
    5959RunLoop& RunLoop::current()
    6060{
    61     static NeverDestroyed<ThreadSpecific<Holder, CanBeGCThread::True>> runLoopHolder;
     61    static NeverDestroyed<ThreadSpecific<Holder>> runLoopHolder;
    6262    return runLoopHolder.get()->runLoop();
    6363}
Note: See TracChangeset for help on using the changeset viewer.