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

Unified Diff: src/incremental-marking.h

Issue 6745033: On store buffer overflow we mark individidual pages for... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: '' Created 9 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
Index: src/incremental-marking.h
===================================================================
--- src/incremental-marking.h (revision 7374)
+++ src/incremental-marking.h (working copy)
@@ -50,6 +50,9 @@
return state_;
}
+ static bool should_hurry() { return should_hurry_; }
+ static void set_should_hurry(bool val) { should_hurry_ = val; }
+
static inline bool IsStopped() { return state() == STOPPED; }
static bool WorthActivating();
@@ -226,7 +229,7 @@
static int steps_count_;
static double steps_took_;
-
+ static bool should_hurry_;
};
} } // namespace v8::internal

Powered by Google App Engine
This is Rietveld 408576698