Skip to content

Commit 2ed5665

Browse files
authored
Apply suggestions from code review
1 parent 0866b96 commit 2ed5665

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: library/std/src/os/unix/process.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -237,27 +237,27 @@ pub trait ExitStatusExt: Sealed {
237237
fn signal(&self) -> Option<i32>;
238238

239239
/// If the process was terminated by a signal, says whether it dumped core.
240-
#[stable(feature = "unix_process_wait_more", since = "1.57.0")]
240+
#[stable(feature = "unix_process_wait_more", since = "1.58.0")]
241241
fn core_dumped(&self) -> bool;
242242

243243
/// If the process was stopped by a signal, returns that signal.
244244
///
245245
/// In other words, if `WIFSTOPPED`, this returns `WSTOPSIG`. This is only possible if the status came from
246246
/// a `wait` system call which was passed `WUNTRACED`, and was then converted into an `ExitStatus`.
247-
#[stable(feature = "unix_process_wait_more", since = "1.57.0")]
247+
#[stable(feature = "unix_process_wait_more", since = "1.58.0")]
248248
fn stopped_signal(&self) -> Option<i32>;
249249

250250
/// Whether the process was continued from a stopped status.
251251
///
252252
/// Ie, `WIFCONTINUED`. This is only possible if the status came from a `wait` system call
253253
/// which was passed `WCONTINUED`, and was then converted into an `ExitStatus`.
254-
#[stable(feature = "unix_process_wait_more", since = "1.57.0")]
254+
#[stable(feature = "unix_process_wait_more", since = "1.58.0")]
255255
fn continued(&self) -> bool;
256256

257257
/// Returns the underlying raw `wait` status.
258258
///
259259
/// The returned integer is a **wait status, not an exit status**.
260-
#[stable(feature = "unix_process_wait_more", since = "1.57.0")]
260+
#[stable(feature = "unix_process_wait_more", since = "1.58.0")]
261261
fn into_raw(self) -> i32;
262262
}
263263

0 commit comments

Comments
 (0)