2 unstable releases

0.1.0 Feb 25, 2024
0.0.0 Feb 25, 2024

#964 in Algorithms

Download history 191/week @ 2024-02-19 1213/week @ 2024-02-26 3069/week @ 2024-03-04 2437/week @ 2024-03-11 2011/week @ 2024-03-18 2209/week @ 2024-03-25 2411/week @ 2024-04-01 2682/week @ 2024-04-08 1778/week @ 2024-04-15

9,087 downloads per month
Used in lgalloc

MIT/Apache

19KB
407 lines

numa_maps

A simple library to read the numa_maps file on Linux.

[dependencies]
numa_maps = "0.1"

Example

#[cfg(target_os = "linux")]
let map = numa_maps::NumaMap::from_file("/proc/self/numa_maps").unwrap();
#[cfg(not(target_os = "linux"))]
let map = numa_maps::NumaMap::default();

for region in &map.ranges {
    println!("base: {:x} -> {:?}", region.address, region.properties);
}

Description

numa_maps provides a simple API to read the contents of the numa_maps file. It parses the file into ranges with a base address, a policy, and a list of properties.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps