blob: b4c5b21131b1dc4ba2d945b8cbd6907487f77c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// `WriterError` is large and clippy doesn't like that, but not a huge deal atm
#![allow(clippy::result_large_err)]
#[cfg(target_os = "android")]
mod android;
pub mod app_memory;
pub(crate) mod auxv_reader;
pub mod crash_context;
mod dso_debug;
mod dumper_cpu_info;
pub mod errors;
pub mod maps_reader;
pub mod minidump_writer;
pub mod ptrace_dumper;
pub(crate) mod sections;
pub mod thread_info;
pub use maps_reader::LINUX_GATE_LIBRARY_NAME;
|