Skip to main content

process_backend/
lib.rs

1#![no_std]
2#![cfg(any(target_os = "linux", target_os = "android"))]
3
4pub mod local;
5pub mod regs;
6
7/// This is the longest path length we guarantee we can handle, since we won't be able to allocate
8/// in the fork of the crashed process. We can increase if necessary.
9pub const MAX_PATH_LEN: usize = 256;