Skip to content

Commit

Permalink
Stabilize std::os::unix::process::CommandExt::before_exec
Browse files Browse the repository at this point in the history
  • Loading branch information
aturon committed Dec 15, 2016
1 parent 9e8fd24 commit 65b144c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/sys/unix/ext/process.rs
Expand Up @@ -56,7 +56,7 @@ pub trait CommandExt {
/// When this closure is run, aspects such as the stdio file descriptors and
/// working directory have successfully been changed, so output to these
/// locations may not appear where intended.
#[unstable(feature = "process_exec", issue = "31398")]
#[stable(feature = "process_exec", since = "1.15.0")]
fn before_exec<F>(&mut self, f: F) -> &mut process::Command
where F: FnMut() -> io::Result<()> + Send + Sync + 'static;

Expand Down

0 comments on commit 65b144c

Please sign in to comment.