Changeset 215088 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Apr 7, 2017, 3:43:43 AM (8 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r215073 r215088 1 2017-04-07 Carlos Garcia Campos <[email protected]> 2 3 [GTK] Update the priorities used in glib main loop sources 4 https://bugs.webkit.org/show_bug.cgi?id=170457 5 6 Reviewed by Žan Doberšek. 7 8 * runtime/JSRunLoopTimer.cpp: 9 (JSC::JSRunLoopTimer::JSRunLoopTimer): 10 1 11 2017-04-06 Filip Pizlo <[email protected]> 2 12 -
trunk/Source/JavaScriptCore/runtime/JSRunLoopTimer.cpp
r214732 r215088 38 38 #if USE(GLIB) 39 39 #include <glib.h> 40 #include <wtf/glib/RunLoopSourcePriority.h> 40 41 #endif 41 42 … … 134 135 , m_timer(adoptGRef(g_source_new(&JSRunLoopTimerSourceFunctions, sizeof(GSource)))) 135 136 { 137 g_source_set_priority(m_timer.get(), RunLoopSourcePriority::JavascriptTimer); 136 138 g_source_set_name(m_timer.get(), "[JavaScriptCore] JSRunLoopTimer"); 137 139 g_source_set_callback(m_timer.get(), [](gpointer userData) -> gboolean {
Note:
See TracChangeset
for help on using the changeset viewer.