remoteprocess
remoteprocess copied to clipboard
Cross platform process information in Rust
Use `ptrace::seize`/`ptrace::interrupt` to avoid needing to involve signals (e.g `SIGSTOP`, `SIGTRAP`+`execve`) when pausing pause threads, as these can cause race conditions with e.g. foreign processes that also send signals the...
Updates the requirements on [nix](https://github.com/nix-rust/nix) to permit the latest version. Changelog Sourced from nix's changelog. [0.27.0] - 2023-08-28 Added Added AT_EACCESS to AtFlags on all platforms but android (#1995) Add...
Updates the requirements on [object](https://github.com/gimli-rs/object) to permit the latest version. Changelog Sourced from object's changelog. 0.32.0 Released 2023/08/12. Breaking changes Changed read::elf::Note::name to exclude all trailing null bytes. #549 Updated...
Updates the requirements on [addr2line](https://github.com/gimli-rs/addr2line) to permit the latest version. Changelog Sourced from addr2line's changelog. 0.21.0 (2023/08/12) Breaking changes Updated gimli, object, and fallible-iterator dependencies. Changed The minimum supported rust...
Updates the requirements on [libproc](https://github.com/andrewdavidmackenzie/libproc-rs) to permit the latest version. Release notes Sourced from libproc's releases. v0.14.0 Added compile level support for redox OS, with a simple "cargo check" CI...
Updates the requirements on [goblin](https://github.com/m4b/goblin) to permit the latest version. Commits See full diff in compare view Dependabot will resolve any conflicts with this PR as long as you don't...
``` cargo run --example trace --features unwind ``` When I run this command, I got this error. Anyone can help? ``` Finished dev [unoptimized + debuginfo] target(s) in 4.02s Running...
This is wrong when trying to use a rustup installed rustc on alpine or when globally installing musl on a non-alpine system. I would suggest always assuming that musl is...
Someone reported a bug in the rust-lang zulip about your crate. I happened to notice that you're detecting statically linked musl the wrong way (or, a way that doesn't handle...
This may not be a bug and just need documented: On Windows using `ManuallyDrop` with the result of Process.lock will leave the process suspended forever. On Linux the process will...