Changeset 230402 in webkit


Ignore:
Timestamp:
Apr 9, 2018 3:53:36 AM (6 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r229406 - [GLib] RunLoop::wakeUp(): use a zero value instead of the monotonic time
https://bugs.webkit.org/show_bug.cgi?id=183447

Reviewed by Carlos Garcia Campos.

  • wtf/glib/RunLoopGLib.cpp:

(WTF::RunLoop::wakeUp): Micro-optimize the wake-up schedule by using
a zero value as the GSource ready time, instead of retrieving and using
the current monotonic time.

Location:
releases/WebKitGTK/webkit-2.20/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.20/Source/WTF/ChangeLog

    r229235 r230402  
     12018-03-08  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GLib] RunLoop::wakeUp(): use a zero value instead of the monotonic time
     4        https://bugs.webkit.org/show_bug.cgi?id=183447
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * wtf/glib/RunLoopGLib.cpp:
     9        (WTF::RunLoop::wakeUp): Micro-optimize the wake-up schedule by using
     10        a zero value as the GSource ready time, instead of retrieving and using
     11        the current monotonic time.
     12
    1132018-02-23  Fujii Hironori  <Hironori.Fujii@sony.com>
    214
  • releases/WebKitGTK/webkit-2.20/Source/WTF/wtf/glib/RunLoopGLib.cpp

    r227976 r230402  
    121121void RunLoop::wakeUp()
    122122{
    123     g_source_set_ready_time(m_source.get(), g_get_monotonic_time());
     123    g_source_set_ready_time(m_source.get(), 0);
    124124}
    125125
Note: See TracChangeset for help on using the changeset viewer.