@@ -237,27 +237,27 @@ pub trait ExitStatusExt: Sealed {
237
237
fn signal ( & self ) -> Option < i32 > ;
238
238
239
239
/// 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" ) ]
241
241
fn core_dumped ( & self ) -> bool ;
242
242
243
243
/// If the process was stopped by a signal, returns that signal.
244
244
///
245
245
/// In other words, if `WIFSTOPPED`, this returns `WSTOPSIG`. This is only possible if the status came from
246
246
/// 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" ) ]
248
248
fn stopped_signal ( & self ) -> Option < i32 > ;
249
249
250
250
/// Whether the process was continued from a stopped status.
251
251
///
252
252
/// Ie, `WIFCONTINUED`. This is only possible if the status came from a `wait` system call
253
253
/// 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" ) ]
255
255
fn continued ( & self ) -> bool ;
256
256
257
257
/// Returns the underlying raw `wait` status.
258
258
///
259
259
/// 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" ) ]
261
261
fn into_raw ( self ) -> i32 ;
262
262
}
263
263
0 commit comments