You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix syscall definitions for x86_64-unknown-linux-gnux32.
libc::syscall takes a c_long as in x86_64-unknown-linux-gnu [1], but
c_long is i32 rather than i64 [2].
The syscall numbers include 0x40000000 as an indicator of the ABI [2].
[1]: rust-lang/libc:src/unix/linux_like/linux/mod.rs
[2]: rust-lang/libc:src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs
0 commit comments