@@ -177,25 +177,25 @@ pub trait ExitStatusExt {
177
177
fn signal ( & self ) -> Option < i32 > ;
178
178
179
179
/// If the process was terminated by a signal, says whether it dumped core.
180
- #[ unstable( feature = "unix_process_wait_more" , issue = "none " ) ]
180
+ #[ unstable( feature = "unix_process_wait_more" , issue = "80695 " ) ]
181
181
fn core_dumped ( & self ) -> bool ;
182
182
183
183
/// If the process was stopped by a signal, returns that signal.
184
184
///
185
185
/// In other words, if `WIFSTOPPED`, this returns `WSTOPSIG`. This is only possible if the status came from
186
186
/// a `wait` system call which was passed `WUNTRACED`, was then converted into an `ExitStatus`.
187
- #[ unstable( feature = "unix_process_wait_more" , issue = "none " ) ]
187
+ #[ unstable( feature = "unix_process_wait_more" , issue = "80695 " ) ]
188
188
fn stopped_signal ( & self ) -> Option < i32 > ;
189
189
190
190
/// Whether the process was continued from a stopped status.
191
191
///
192
192
/// Ie, `WIFCONTINUED`. This is only possible if the status came from a `wait` system call
193
193
/// which was passed `WCONTINUED`, was then converted into an `ExitStatus`.
194
- #[ unstable( feature = "unix_process_wait_more" , issue = "none " ) ]
194
+ #[ unstable( feature = "unix_process_wait_more" , issue = "80695 " ) ]
195
195
fn continued ( & self ) -> bool ;
196
196
197
197
/// Returns the underlying raw `wait` status.
198
- #[ unstable( feature = "unix_process_wait_more" , issue = "none " ) ]
198
+ #[ unstable( feature = "unix_process_wait_more" , issue = "80695 " ) ]
199
199
fn into_raw ( self ) -> i32 ;
200
200
}
201
201
0 commit comments