saddle-runtime 0.2.0-rc.3

Saddle managed asynchronous runtime and lifecycle
Documentation
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);
    }
}