about summary refs log tree commit diff
path: root/library/std/src/os/unix/process.rs
diff options
context:
space:
mode:
authorJane Lusby <jlusby42@gmail.com>2021-10-05 15:33:33 -0700
committerGitHub <noreply@github.com>2021-10-05 15:33:33 -0700
commit0866b9627c50a6439e7c40340b10e7d173189534 (patch)
treec6080aa3718ce31940c48f81939bfee0ddc808c6 /library/std/src/os/unix/process.rs
parentc4d4699f4b16c8b4285b796e7d0e93215433e45a (diff)
downloadrust-0866b9627c50a6439e7c40340b10e7d173189534.tar.gz
rust-0866b9627c50a6439e7c40340b10e7d173189534.zip
Apply suggestions from code review
Diffstat (limited to 'library/std/src/os/unix/process.rs')
-rw-r--r--library/std/src/os/unix/process.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/std/src/os/unix/process.rs b/library/std/src/os/unix/process.rs
index 206425fc6e9..c3d9f303009 100644
--- a/library/std/src/os/unix/process.rs
+++ b/library/std/src/os/unix/process.rs
@@ -237,27 +237,27 @@ pub trait ExitStatusExt: Sealed {
     fn signal(&self) -> Option<i32>;
 
     /// If the process was terminated by a signal, says whether it dumped core.
-    #[stable(feature = "unix_process_wait_more", since = "1.56.0")]
+    #[stable(feature = "unix_process_wait_more", since = "1.57.0")]
     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`, and was then converted into an `ExitStatus`.
-    #[stable(feature = "unix_process_wait_more", since = "1.56.0")]
+    #[stable(feature = "unix_process_wait_more", since = "1.57.0")]
     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`, and was then converted into an `ExitStatus`.
-    #[stable(feature = "unix_process_wait_more", since = "1.56.0")]
+    #[stable(feature = "unix_process_wait_more", since = "1.57.0")]
     fn continued(&self) -> bool;
 
     /// Returns the underlying raw `wait` status.
     ///
     /// The returned integer is a **wait status, not an exit status**.
-    #[stable(feature = "unix_process_wait_more", since = "1.56.0")]
+    #[stable(feature = "unix_process_wait_more", since = "1.57.0")]
     fn into_raw(self) -> i32;
 }