Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/2648.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ptrace for Linux fix first argument type (u32 to i32) for s390x/musl
2 changes: 1 addition & 1 deletion src/sys/ptrace/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub type AddressType = *mut ::libc::c_void;
use libc::user_regs_struct;

cfg_if! {
if #[cfg(any(all(target_os = "linux", target_arch = "s390x"),
if #[cfg(any(
all(target_os = "linux", target_env = "gnu"),
target_env = "uclibc"))] {
#[doc(hidden)]
Expand Down
Loading