Changeset 244961 in webkit


Ignore:
Timestamp:
May 6, 2019 2:03:48 AM (5 years ago)
Author:
zandobersek@gmail.com
Message:

[GLib] WebCore::MainThreadSharedTimer should use the appropriate GSource priority, name
https://bugs.webkit.org/show_bug.cgi?id=197606

Reviewed by Carlos Garcia Campos.

  • platform/MainThreadSharedTimer.cpp:

(WebCore::MainThreadSharedTimer::MainThreadSharedTimer):
Use the MainThreadSharedTimer GLib priority for this timer. The name is
also adjusted accordingly.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r244956 r244961  
     12019-05-06  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GLib] WebCore::MainThreadSharedTimer should use the appropriate GSource priority, name
     4        https://bugs.webkit.org/show_bug.cgi?id=197606
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * platform/MainThreadSharedTimer.cpp:
     9        (WebCore::MainThreadSharedTimer::MainThreadSharedTimer):
     10        Use the MainThreadSharedTimer GLib priority for this timer. The name is
     11        also adjusted accordingly.
     12
    1132019-05-05  Wenson Hsieh  <wenson_hsieh@apple.com>
    214
  • trunk/Source/WebCore/platform/MainThreadSharedTimer.cpp

    r237930 r244961  
    5151{
    5252#if USE(GLIB)
    53     m_timer.setPriority(RunLoopSourcePriority::MainThreadDispatcherTimer);
    54     m_timer.setName("[WebKit] MainThreadDispatcherTimer");
     53    m_timer.setPriority(RunLoopSourcePriority::MainThreadSharedTimer);
     54    m_timer.setName("[WebKit] MainThreadSharedTimer");
    5555#endif
    5656}
Note: See TracChangeset for help on using the changeset viewer.