profile-bee-aya-obj 0.2.2

An eBPF object file parsing library with BTF and relocation support. Fork of aya-obj for profile-bee.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! BTF loading, parsing and relocation.

#[expect(clippy::module_inception, reason = "TODO")]
mod btf;
mod info;
mod relocation;
mod types;

pub use btf::*;
pub use info::*;
pub use relocation::BtfRelocationError;
pub use types::*;