blazesym 0.2.3

blazesym is a library for address symbolization and related tasks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "bpf")]
mod bpf;
mod cache;
mod kaslr;
mod ksym;
mod resolver;

/// The path to the `/proc/kallsyms` file.
const KALLSYMS: &str = "/proc/kallsyms";

pub(crate) use cache::KernelCache;
pub(crate) use resolver::KernelResolver;