Revision: 21068
Author: [email protected]
Date: Tue Apr 29 19:37:56 2014 UTC
Log: Fix compile.
BUG=
Review URL: https://codereview.chromium.org/260493003
http://code.google.com/p/v8/source/detail?r=21068
Modified:
/branches/bleeding_edge/src/heap.cc
=======================================
--- /branches/bleeding_edge/src/heap.cc Tue Apr 29 19:01:41 2014 UTC
+++ /branches/bleeding_edge/src/heap.cc Tue Apr 29 19:37:56 2014 UTC
@@ -4477,8 +4477,9 @@
// If the IdleNotifcation is called with a large hint we will wait for
// the sweepter threads here.
- if (hint >= kMinHintForFullGC && IsConcurrentSweepingInProgress()) {
- WaitUntilSweepingCompleted();
+ if (hint >= kMinHintForFullGC &&
+ mark_compact_collector()->IsConcurrentSweepingInProgress()) {
+ mark_compact_collector()->WaitUntilSweepingCompleted();
}
return false;
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.