We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 590d2a4 commit 5c2ce3eCopy full SHA for 5c2ce3e
src/unix/linux_like/linux/gnu/mod.rs
@@ -944,6 +944,9 @@ pub const NT_PRFPXREG: ::c_int = 20;
944
945
pub const ELFOSABI_ARM_AEABI: u8 = 64;
946
947
+// linux/sched.h
948
+pub const CLONE_NEWTIME: ::c_int = 0x80;
949
+
950
// linux/keyctl.h
951
pub const KEYCTL_DH_COMPUTE: u32 = 23;
952
pub const KEYCTL_PKEY_QUERY: u32 = 24;
src/unix/linux_like/mod.rs
@@ -1156,7 +1156,6 @@ pub const ONLRET: ::tcflag_t = 0o000040;
1156
pub const OFILL: ::tcflag_t = 0o000100;
1157
pub const OFDEL: ::tcflag_t = 0o000200;
1158
1159
-pub const CLONE_NEWTIME: ::c_int = 0x80;
1160
pub const CLONE_VM: ::c_int = 0x100;
1161
pub const CLONE_FS: ::c_int = 0x200;
1162
pub const CLONE_FILES: ::c_int = 0x400;
0 commit comments