Index: src/heap/heap.h |
diff --git a/src/heap/heap.h b/src/heap/heap.h |
index e024c947650b96268c3fd71f6b25617f19073fbf..f460b55960d58e1fd08e91c651c413bd31b8b848 100644 |
--- a/src/heap/heap.h |
+++ b/src/heap/heap.h |
@@ -2142,15 +2142,18 @@ class Heap { |
// Minimal interval between two subsequent collections. |
double min_in_mutator_; |
- // Cumulative GC time spent in marking |
+ // Cumulative GC time spent in marking. |
double marking_time_; |
- // Cumulative GC time spent in sweeping |
+ // Cumulative GC time spent in sweeping. |
double sweeping_time_; |
- // Last time an idle notification happened |
+ // Last time an idle notification happened. |
double last_idle_notification_time_; |
+ // Last time a garbage collection happened. |
+ double last_gc_time_; |
+ |
MarkCompactCollector mark_compact_collector_; |
StoreBuffer store_buffer_; |