Feature gate: #![feature(process_setsid)]
This is a tracking issue for adding a setsid method to the std::os::unix::process::CommandExt trait.
Add a new setsid method to the CommandExt trait for UNIX systems. Using the setsid method, a caller can create a new session and process group whilst still benefiting from the POSIX spawn fast path code.
Public API
trait CommandExt {
fn setsid(&mut self) -> &mut Command
}
Steps / History
Unresolved Questions
Feature gate:
#![feature(process_setsid)]This is a tracking issue for adding a
setsidmethod to thestd::os::unix::process::CommandExttrait.Add a new
setsidmethod to theCommandExttrait for UNIX systems. Using thesetsidmethod, a caller can create a new session and process group whilst still benefiting from the POSIX spawn fast path code.Public API
Steps / History
setsidmethod toCommandExttrait #105377setsidmethod toCommandExttrait #142391Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩