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