summaryrefslogtreecommitdiffstats
path: root/third_party/rust/minidump_writer_linux/src/lib.rs
blob: 2a08482ce0219eb57ef6c985b45ec9cb71967344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use std::error;
use std::result;

type Error = Box<dyn error::Error + std::marker::Send + std::marker::Sync>;
pub type Result<T> = result::Result<T, Error>;

pub mod app_memory;
mod auxv_reader;
pub mod cpu_set;
pub mod crash_context;
mod dso_debug;
mod dumper_cpu_info;
pub mod linux_ptrace_dumper;
pub mod maps_reader;
pub mod minidump_cpu;
pub mod minidump_format;
pub mod minidump_writer;
mod sections;
pub mod thread_info;

pub use maps_reader::LINUX_GATE_LIBRARY_NAME;