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 31c595a commit 76d4a8eCopy full SHA for 76d4a8e
src/unix/linux_like/linux/musl/mod.rs
@@ -599,7 +599,10 @@ pub const ACCOUNTING: c_short = 9;
599
600
pub const SFD_CLOEXEC: c_int = 0x080000;
601
602
+#[cfg(not(any(target_arch = "powerpc", target_arch = "powerpc64")))]
603
pub const NCCS: usize = 32;
604
+#[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))]
605
+pub const NCCS: usize = 19;
606
607
pub const O_TRUNC: c_int = 512;
608
pub const O_NOATIME: c_int = 0o1000000;
0 commit comments