4 releases

0.2.2 Mar 29, 2024
0.2.1 Sep 21, 2023
0.2.0 Jul 1, 2023
0.1.0 Oct 23, 2022

#164 in Operating systems

Download history 423/week @ 2024-01-01 208/week @ 2024-01-08 295/week @ 2024-01-15 273/week @ 2024-01-22 171/week @ 2024-01-29 252/week @ 2024-02-05 267/week @ 2024-02-12 526/week @ 2024-02-19 466/week @ 2024-02-26 574/week @ 2024-03-04 1713/week @ 2024-03-11 740/week @ 2024-03-18 856/week @ 2024-03-25 797/week @ 2024-04-01 690/week @ 2024-04-08 382/week @ 2024-04-15

2,801 downloads per month
Used in 2 crates (via sentry-rust-minidump)

MIT/Apache

14KB
284 lines

minidumper-child

Master branch integration test status

Essentially takes the code from the minidumper diskwrite example and packages it in reusable form with some integration tests. This wraps the minidumper and crash-handler crates to capture and send minidumps from a separate crash reporting process.

It spawns the current executable again with an argument that causes it to start in crash reporter mode. In this mode it waits for minidump notification from the main app process and passes the minidump file to a user defined closure.

[dependencies]
minidumper-child = "0.1"
use minidumper_child::MinidumperChild;

fn main() {
    // Everything before here runs in both app and crash reporter processes
    let _guard = MinidumperChild::new()
        .on_minidump(|buffer: Vec<u8>, path: &Path| {
            // Do something with the minidump file here
        })
        .spawn();
    // Everything after here will only run in the app process

    App::run();

    // This will cause on_minidump to be called in the crash reporter process 
    #[allow(deref_nullptr)]
    unsafe {
        *std::ptr::null_mut() = true;
    }
}

Dependencies

~5–17MB
~209K SLoC