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 fc3234f commit 0e177e5Copy full SHA for 0e177e5
libc-test/semver/linux-musl.txt
@@ -5,6 +5,9 @@ AIO_ALLDONE
5
AIO_CANCELED
6
AIO_NOTCANCELED
7
BOOT_TIME
8
+CLONE_CLEAR_SIGHAND
9
+CLONE_INTO_CGROUP
10
+CLONE_NEWTIME
11
DEAD_PROCESS
12
EMPTY
13
Elf32_Chdr
src/unix/linux_like/linux/musl/mod.rs
@@ -885,6 +885,11 @@ pub const MAXTC: c_long = 6;
885
pub const _CS_V6_ENV: c_int = 1148;
886
pub const _CS_V7_ENV: c_int = 1149;
887
888
+// linux/sched.h
889
+pub const CLONE_NEWTIME: c_int = 0x80;
890
+pub const CLONE_CLEAR_SIGHAND: c_ulonglong = 0x100000000;
891
+pub const CLONE_INTO_CGROUP: c_ulonglong = 0x200000000;
892
+
893
cfg_if! {
894
if #[cfg(target_arch = "s390x")] {
895
pub const POSIX_FADV_DONTNEED: c_int = 6;
0 commit comments