Skip to content

Commit 2cfbcb9

Browse files
committed
feat: add CLONE_NEWTIME flag for Linux
1 parent 299feba commit 2cfbcb9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/sched.rs

+8
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,14 @@ mod sched_linux_like {
8080
CLONE_NEWNET;
8181
/// The new process shares an I/O context with the calling process.
8282
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;
8391
}
8492
}
8593

0 commit comments

Comments
 (0)