We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a72936d commit 1432201Copy full SHA for 1432201
changelog/2648.fixed.md
@@ -0,0 +1 @@
1
+ptrace for Linux fix first argument type (u32 to i32) for s390x/musl
src/sys/ptrace/linux.rs
@@ -24,7 +24,7 @@ pub type AddressType = *mut ::libc::c_void;
24
use libc::user_regs_struct;
25
26
cfg_if! {
27
- if #[cfg(any(all(target_os = "linux", target_arch = "s390x"),
+ if #[cfg(any(
28
all(target_os = "linux", target_env = "gnu"),
29
target_env = "uclibc"))] {
30
#[doc(hidden)]
0 commit comments