Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1810)

Unified Diff: Source/platform/heap/ThreadState.cpp

Issue 1295713003: Oilpan: A precise GC should be prioritized than an idle GC (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/ThreadState.cpp
diff --git a/Source/platform/heap/ThreadState.cpp b/Source/platform/heap/ThreadState.cpp
index 3971b8206bada4336caa2e1b62f5e4394600ca45..0b06ceacab0bb033d7d863562c7c7acf73d172a3 100644
--- a/Source/platform/heap/ThreadState.cpp
+++ b/Source/platform/heap/ThreadState.cpp
@@ -650,8 +650,6 @@ bool ThreadState::shouldScheduleIdleGC()
bool ThreadState::shouldSchedulePreciseGC()
{
- if (gcState() != NoGCScheduled)
- return false;
Yuta Kitamura 2015/08/18 03:06:28 Let me confirm my understanding of this removal.
haraken 2015/08/18 03:45:23 Yes, that is the intention of this CL.
#if ENABLE(IDLE_GC)
return false;
haraken 2015/08/18 02:39:53 yutak@: After landing this change, you just need t
#else
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698