pub mod guard;
pub mod ipc;
pub mod resource;
use mach2::mach_types as mt;
#[derive(Copy, Clone, Debug)]
pub struct ExceptionInfo {
pub kind: u32,
pub code: u64,
pub subcode: Option<u64>,
}
#[derive(Debug)]
pub struct CrashContext {
pub task: mt::task_t,
pub thread: mt::thread_t,
pub handler_thread: mt::thread_t,
pub exception: Option<ExceptionInfo>,
}