1 个不稳定版本
0.1.0 | 2023年8月11日 |
---|
590 在 内存管理
13KB
216 行
system_alloc_stats
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