Closed
Description
Feature gate: #![feature(process_set_process_group)]
This is a tracking issue for: Add a process_group
method to UNIX CommandExt
Add a process_group
method to std::os::unix::process::CommandExt
that
allows setting the process group id (i.e. calling setpgid
) in the child, thus
enabling users to set process groups while leveraging the posix_spawn
fast
path.
Public API
trait CommandExt {
fn process_group(
&mut self,
pgroup: i32,
) -> &mut process::Command
}
Steps / History
- RFC: RFC: Add a
process_group
method to UNIXCommandExt
rfcs#3228 - Implementation: Add a
process_group
method to UNIXCommandExt
#93858 - Final comment period (FCP): Tracking Issue for process_set_process_group #93857 (comment)
- Stabilization PR: Document and stabilize process_set_process_group #99088
Unresolved Questions
- None yet.
Metadata
Metadata
Assignees
Labels
Category: An issue tracking the progress of sth. like the implementation of an RFCOperating system: FuchsiaRelevant to the library API team, which will review and decide on the PR/issue.This issue / PR is in PFCP or FCP with a disposition to merge it.The final comment period is finished for this PR / Issue.