pub fn clone_child(
namespace_list: &[LinuxNamespace],
child_fn: impl FnMut() -> isize,
) -> Result<Pid>Expand description
clone_child creates a child process that invokes function in seperated
Linux namespaces specified in namespace_list.
For more information, see the clone(2)
man page.