We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff39e00 commit 7902405Copy full SHA for 7902405
std/src/os/windows/process.rs
@@ -203,6 +203,10 @@ impl ChildExt for process::Child {
203
pub trait ExitCodeExt: Sealed {
204
/// Creates a new `ExitCode` from the raw underlying `u32` return value of
205
/// a process.
206
+ ///
207
+ /// The exit code should not be 259, as this conflicts with the `STILL_ACTIVE`
208
+ /// macro returned from the `GetExitCodeProcess` function to signal that the
209
+ /// process has yet to run to completion.
210
#[stable(feature = "windows_process_exit_code_from", since = "1.63.0")]
211
fn from_raw(raw: u32) -> Self;
212
}
0 commit comments