We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06284e1 commit 1547428Copy full SHA for 1547428
src/plan/sticky/immix/global.rs
@@ -80,6 +80,12 @@ impl<VM: VMBinding> Plan for StickyImmix<VM> {
80
self.immix.common()
81
}
82
83
+ #[cfg(feature = "dump_memory_stats")]
84
+ fn dump_memory_stats(&self) {
85
+ self.immix.immix_space.dump_memory_stats();
86
+ self.common().los.dump_memory_stats();
87
+ }
88
+
89
fn schedule_collection(&'static self, scheduler: &crate::scheduler::GCWorkScheduler<Self::VM>) {
90
let is_full_heap = self.requires_full_heap_collection();
91
self.gc_full_heap.store(is_full_heap, Ordering::SeqCst);
0 commit comments