Skip to content

Commit fa68567

Browse files
committed
unix ExitStatus: Add tracking issue to new methods
Signed-off-by: Ian Jackson <[email protected]>
1 parent 06a405c commit fa68567

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

library/std/src/sys/unix/ext/process.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,25 +177,25 @@ pub trait ExitStatusExt {
177177
fn signal(&self) -> Option<i32>;
178178

179179
/// 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")]
181181
fn core_dumped(&self) -> bool;
182182

183183
/// If the process was stopped by a signal, returns that signal.
184184
///
185185
/// In other words, if `WIFSTOPPED`, this returns `WSTOPSIG`. This is only possible if the status came from
186186
/// 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")]
188188
fn stopped_signal(&self) -> Option<i32>;
189189

190190
/// Whether the process was continued from a stopped status.
191191
///
192192
/// Ie, `WIFCONTINUED`. This is only possible if the status came from a `wait` system call
193193
/// 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")]
195195
fn continued(&self) -> bool;
196196

197197
/// Returns the underlying raw `wait` status.
198-
#[unstable(feature = "unix_process_wait_more", issue = "none")]
198+
#[unstable(feature = "unix_process_wait_more", issue = "80695")]
199199
fn into_raw(self) -> i32;
200200
}
201201

0 commit comments

Comments
 (0)