larksuite / perf-monitor-rs

A cross-platform library to retrieve performance statistics data.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

crash in Android " java.lang.UnsatisfiedLinkError: dlopen failed: cannot locate symbol "dl_iterate_phdr"

MichaelJokAr opened this issue · comments

commented

java.lang.UnsatisfiedLinkError: dlopen failed: cannot locate symbol "dl_iterate_phdr"

fn getCpuUsage() -> f64 {
    let mut stat_p = ProcessStat::cur().unwrap();
    let _ = (0..1_000).into_iter().sum::<i128>();
    return stat_p.cpu().unwrap() * 100f64;
}