about summary refs log tree commit diff
path: root/library/std/src/os/unix/process.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-11-10 06:15:50 +0000
committerbors <bors@rust-lang.org>2021-11-10 06:15:50 +0000
commit493ea776ebdecb7ab318444525115810de255c20 (patch)
tree64278497813d9a466c8053abe81dfd9760e31296 /library/std/src/os/unix/process.rs
parentf2f55e8da927351655c73cca0ace77f5a82daed0 (diff)
parente7375016eb9a7d3bc19d9d349c71e18b76cceefd (diff)
downloadrust-493ea776ebdecb7ab318444525115810de255c20.tar.gz
rust-493ea776ebdecb7ab318444525115810de255c20.zip
Auto merge of #90754 - matthiaskrgr:rollup-v0483m5, r=matthiaskrgr
Rollup of 3 pull requests

Successful merges:

 - #90690 (kmc-solid: Avoid the use of `asm_const`)
 - #90748 (Add a real tracking issue for `CommandExt::groups`)
 - #90751 (Update books)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'library/std/src/os/unix/process.rs')
-rw-r--r--library/std/src/os/unix/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/process.rs b/library/std/src/os/unix/process.rs
index 286a7c3b386..01b8303a6c3 100644
--- a/library/std/src/os/unix/process.rs
+++ b/library/std/src/os/unix/process.rs
@@ -39,7 +39,7 @@ pub trait CommandExt: Sealed {
 
     /// 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],