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

Unified Diff: src/heap.h

Issue 9608006: Add kAbortIncrementalMarkingMask flag for GC. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 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 | src/heap.cc » ('j') | src/mark-compact-inl.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap.h
diff --git a/src/heap.h b/src/heap.h
index 0aacd841448c0a24581d1cafdf905d501b66a583..76442699937f3a301bfa659387ce62fac9c2f6cd 100644
--- a/src/heap.h
+++ b/src/heap.h
@@ -1043,6 +1043,7 @@ class Heap {
static const int kNoGCFlags = 0;
static const int kMakeHeapIterableMask = 1;
static const int kReduceMemoryFootprintMask = 2;
+ static const int kAbortIncrementalMarkingMask = 4;
ulan 2012/03/07 17:22:26 Consider these flags: static const int kSweepPreci
Michael Starzinger 2012/03/07 17:50:38 Done.
// Performs a full garbage collection. If (flags & kMakeHeapIterableMask) is
// non-zero, then the slower precise sweeper is used, which leaves the heap
« no previous file with comments | « no previous file | src/heap.cc » ('j') | src/mark-compact-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698