read-process-memory icon indicating copy to clipboard operation
read-process-memory copied to clipboard

Read memory from another process

Results 2 read-process-memory issues
Sort by recently updated
recently updated
newest added

At Pyroscope (https://github.com/pyroscope-io/pyroscope), we've been using rbspy with the Rust integration (https://github.com/pyroscope-io/pyroscope-rs). This particular error catch is used to handle a case where `SYS_PTRACE` is not enabled for docker; and...

Rust shipped with a stable [`std::os::windows::io::OwnedHandle`](https://doc.rust-lang.org/std/os/windows/io/struct.OwnedHandle.html) ([RFC](https://internals.rust-lang.org/t/pre-rfc-i-o-safety/14585)) in 1.63. Let's consider using it as an improved `ProcessHandle`. References: - https://doc.rust-lang.org/std/os/windows/io/struct.OwnedHandle.html - https://internals.rust-lang.org/t/pre-rfc-i-o-safety/14585 - https://github.com/rbspy/read-process-memory/pull/16 - https://github.com/rbspy/read-process-memory/pull/17 - https://github.com/rbspy/read-process-memory/pull/21

enhancement