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

Unified Diff: runtime/vm/pages.h

Issue 11734028: - Consolidate verbose-gc output to be a single line which can be imported easily into spreadsheets. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 12 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: runtime/vm/pages.h
===================================================================
--- runtime/vm/pages.h (revision 16586)
+++ runtime/vm/pages.h (working copy)
@@ -195,7 +195,7 @@
HeapPage::PageType type) const;
// Collect the garbage in the page space using mark-sweep.
- void MarkSweep(bool invoke_api_callbacks, const char* gc_reason);
+ void MarkSweep(bool invoke_api_callbacks);
static HeapPage* PageFor(RawObject* raw_obj) {
return reinterpret_cast<HeapPage*>(
@@ -251,9 +251,6 @@
intptr_t capacity_;
intptr_t in_use_;
- // Old-gen GC cycle count.
- int count_;
-
// Keep track whether a MarkSweep is currently running.
bool sweeping_;

Powered by Google App Engine
This is Rietveld 408576698