| Index: runtime/vm/gc_marker.h
|
| diff --git a/runtime/vm/gc_marker.h b/runtime/vm/gc_marker.h
|
| index fb0b85d4c3989a7c6ac0c5b260893b43acbe9794..c01a6e8e5374a99de4cfbbccb55f0e9f777ebfa8 100644
|
| --- a/runtime/vm/gc_marker.h
|
| +++ b/runtime/vm/gc_marker.h
|
| @@ -49,8 +49,10 @@ class GCMarker : public ValueObject {
|
| // Called by anyone: finalize and accumulate stats from 'visitor'.
|
| void FinalizeResultsFrom(MarkingVisitor* visitor);
|
|
|
| - Monitor monitor_; // Protects marked_bytes_ and done_count_.
|
| Heap* heap_;
|
| +
|
| + Mutex stats_mutex_;
|
| + // TODO(koda): Remove after verifying it's redundant w.r.t. ClassHeapStats.
|
| uintptr_t marked_bytes_;
|
|
|
| friend class MarkTask;
|
|
|