Rollup merge of #90748 - cuviper:track-setgroups, r=dtolnay

Add a real tracking issue for `CommandExt::groups`

The `unstable` attribute referenced the closed RFE #38527, so I filed tracking issue #90747.
This commit is contained in:
Matthias Krüger
2021-11-10 06:02:55 +01:00
committed by GitHub
+1 -1
View File
@@ -39,7 +39,7 @@ fn gid(
/// Sets the supplementary group IDs for the calling process. Translates to
/// a `setgroups` call in the child process.
#[unstable(feature = "setgroups", issue = "38527", reason = "")]
#[unstable(feature = "setgroups", issue = "90747")]
fn groups(
&mut self,
#[cfg(not(target_os = "vxworks"))] groups: &[u32],