diff options
author | 2018-01-24 17:51:35 +0000 | |
---|---|---|
committer | 2018-01-24 17:51:35 +0000 | |
commit | c06d6c60fcd8e0a66d9e8dc51a8f35e8f87454c8 (patch) | |
tree | a709103822c54791cd62f553fdb38c1259edee8e | |
parent | e714e96e78bfdf6c608fdc01de45515e73fa2a8d (diff) |
Remove art::gc::Heap::allocation_rate_.
This member is no longer used anywhere.
Test: mmma art
Change-Id: Ieb11ea74b27c3df9d818c420c50cc04d0f4cfb26
-rw-r--r-- | runtime/gc/heap.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/gc/heap.h b/runtime/gc/heap.h index 57d3d506f0..faa6195259 100644 --- a/runtime/gc/heap.h +++ b/runtime/gc/heap.h @@ -1293,10 +1293,6 @@ class Heap { // Parallel GC data structures. std::unique_ptr<ThreadPool> thread_pool_; - // Estimated allocation rate (bytes / second). Computed between the time of the last GC cycle - // and the start of the current one. - uint64_t allocation_rate_; - // For a GC cycle, a bitmap that is set corresponding to the std::unique_ptr<accounting::HeapBitmap> live_bitmap_ GUARDED_BY(Locks::heap_bitmap_lock_); std::unique_ptr<accounting::HeapBitmap> mark_bitmap_ GUARDED_BY(Locks::heap_bitmap_lock_); |