1 2 3 4 5 6 7 8 9
#[path = "../thread_control.rs"] mod thread_control; fn main() { if let Err(error) = thread_control::run_probe() { eprintln!("thread-control probe failed: {error:?}"); std::process::exit(1); } }