We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 299feba commit 2cfbcb9Copy full SHA for 2cfbcb9
src/sched.rs
@@ -80,6 +80,14 @@ mod sched_linux_like {
80
CLONE_NEWNET;
81
/// The new process shares an I/O context with the calling process.
82
CLONE_IO;
83
+ /// Unshare the time namespace, so that the calling process has a
84
+ /// new time namespace for its children which is not shared with
85
+ /// any previously existing process. The calling process is not
86
+ /// moved into the new namespace. Use of `CLONE_NEWTIME` requires
87
+ /// the `CAP_SYS_ADMIN` capability. For further information, see
88
+ /// [`time_namespaces(7)`](https://man7.org/linux/man-pages/man7/time_namespaces.7.html).
89
+ #[cfg(all(target_os = "linux", target_env = "gnu"))]
90
+ CLONE_NEWTIME;
91
}
92
93
0 commit comments