Skip to content

Commit

Permalink
linux_like: Add missing constants for loongarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
heiher committed May 6, 2023
1 parent 0b758af commit 1d10516
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/unix/linux_like/linux/arch/generic/mod.rs
Expand Up @@ -94,7 +94,8 @@ cfg_if! {
// But they may still not have those _OLD ones.
if #[cfg(all(any(target_arch = "x86",
target_arch = "x86_64",
target_arch = "aarch64"),
target_arch = "aarch64",
target_arch = "loongarch64"),
not(any(target_env = "musl", target_env = "ohos"))))] {
pub const SO_TIMESTAMP_NEW: ::c_int = 63;
pub const SO_TIMESTAMPNS_NEW: ::c_int = 64;
Expand All @@ -113,7 +114,8 @@ cfg_if! {
target_arch = "arm",
target_arch = "aarch64",
target_arch = "riscv64",
target_arch = "s390x"))] {
target_arch = "s390x",
target_arch = "loongarch64"))] {
pub const FICLONE: ::c_ulong = 0x40049409;
pub const FICLONERANGE: ::c_ulong = 0x4020940D;
}
Expand Down

0 comments on commit 1d10516

Please sign in to comment.