#allocator #heap #heap-memory #memory

system_alloc_stats

封装了System分配器的一些统计信息

1 个不稳定版本

0.1.0 2023年8月11日

590内存管理

CC0 许可证

13KB
216

system_alloc_stats

crates.io docs.rs actively maintained

system_alloc_stats 提供了一个对 System 分配器的封装,暴露了其运行时的一些统计信息。

使用方法

use system_alloc_stats::SystemWithStats;

#[global_allocator]
static SWS: SystemWithStats = SystemWithStats;

fn main() {
    (...)
    println!("current heap use: {}; average allocation size: {}", SWS.use_curr(), SWS.alloc_avg());
    (...)
}

依赖项

~150KB