ktstr 0.4.2

Test harness for Linux process schedulers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Crash investigation via BPF kprobes, fentry/fexit, and tracepoints.
//!
//! Attaches kprobes and fentry probes to kernel and BPF functions from
//! a crash stack trace, triggers on `sched_ext_exit` via tp_btf,
//! captures argument state, and formats annotated output with source
//! locations.
//!
//! See the [Investigate a Crash](https://likewhatevs.github.io/ktstr/guide/recipes/investigate-crash.html)
//! recipe.

pub mod btf;
pub(crate) mod decode;
pub mod output;
pub mod process;
pub(crate) mod scx_defs;
pub mod stack;