blob: f7a554d1100e41d11dc4ca360b598ae81ea9e222 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//! Minidump defines register structures which are different from the raw
//! structures which we get from the kernel. These are platform specific
//! functions to juggle the `ucontext_t` and user structures into minidump format.
pub struct CrashContext {
pub inner: crash_context::CrashContext,
}
cfg_if::cfg_if! {
if #[cfg(target_arch = "x86_64")] {
mod x86_64;
} else if #[cfg(target_arch = "x86")] {
mod x86;
} else if #[cfg(target_arch = "aarch64")] {
mod aarch64;
} else if #[cfg(target_arch = "arm")] {
mod arm;
}
}
|