process-backend 0.1.0

Providers helpers for reading process memory specialized for minidump-writer
Documentation
1
2
3
4
5
6
7
8
9
#![no_std]
#![cfg(any(target_os = "linux", target_os = "android"))]

pub mod local;
pub mod regs;

/// This is the longest path length we guarantee we can handle, since we won't be able to allocate
/// in the fork of the crashed process. We can increase if necessary.
pub const MAX_PATH_LEN: usize = 256;