kprobe 0.4.0

A no_std Rust probe infrastructure crate for kprobe, kretprobe, and uprobe on multiple architectures.
Documentation
1
2
3
4
5
use crate::retprobe;
/// The kretprobe structure for the current architecture.
pub type Kretprobe<L, F> = retprobe::Retprobe<L, F>;
/// The kretprobe builder for the current architecture.
pub type KretprobeBuilder<L> = retprobe::RetprobeBuilder<L>;