about summary refs log tree commit diff
path: root/library/std/src/sys/unix/ext
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2021-01-04 17:37:34 +0000
committerIan Jackson <ijackson@chiark.greenend.org.uk>2021-01-13 12:50:29 +0000
commitfa68567a1fa87e92ad39b1749a134faedbbeae48 (patch)
tree507ae05316bb88a1d1a6f091b89623fc9d9abf34 /library/std/src/sys/unix/ext
parent06a405c49cfcdc091f1d84a3c6147d78fbdb5928 (diff)
downloadrust-fa68567a1fa87e92ad39b1749a134faedbbeae48.tar.gz
rust-fa68567a1fa87e92ad39b1749a134faedbbeae48.zip
unix ExitStatus: Add tracking issue to new methods
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'library/std/src/sys/unix/ext')
-rw-r--r--library/std/src/sys/unix/ext/process.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/std/src/sys/unix/ext/process.rs b/library/std/src/sys/unix/ext/process.rs
index a20f826e7f0..889382d3ed4 100644
--- a/library/std/src/sys/unix/ext/process.rs
+++ b/library/std/src/sys/unix/ext/process.rs
@@ -177,25 +177,25 @@ pub trait ExitStatusExt {
     fn signal(&self) -> Option<i32>;
 
     /// If the process was terminated by a signal, says whether it dumped core.
-    #[unstable(feature = "unix_process_wait_more", issue = "none")]
+    #[unstable(feature = "unix_process_wait_more", issue = "80695")]
     fn core_dumped(&self) -> bool;
 
     /// If the process was stopped by a signal, returns that signal.
     ///
     /// In other words, if `WIFSTOPPED`, this returns `WSTOPSIG`.  This is only possible if the status came from
     /// a `wait` system call which was passed `WUNTRACED`, was then converted into an `ExitStatus`.
-    #[unstable(feature = "unix_process_wait_more", issue = "none")]
+    #[unstable(feature = "unix_process_wait_more", issue = "80695")]
     fn stopped_signal(&self) -> Option<i32>;
 
     /// Whether the process was continued from a stopped status.
     ///
     /// Ie, `WIFCONTINUED`.  This is only possible if the status came from a `wait` system call
     /// which was passed `WCONTINUED`, was then converted into an `ExitStatus`.
-    #[unstable(feature = "unix_process_wait_more", issue = "none")]
+    #[unstable(feature = "unix_process_wait_more", issue = "80695")]
     fn continued(&self) -> bool;
 
     /// Returns the underlying raw `wait` status.
-    #[unstable(feature = "unix_process_wait_more", issue = "none")]
+    #[unstable(feature = "unix_process_wait_more", issue = "80695")]
     fn into_raw(self) -> i32;
 }