diff options
| author | Aaron Turon <aturon@mozilla.com> | 2016-12-14 12:22:15 -0800 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2016-12-15 10:56:55 -0800 |
| commit | 65b144c964987970974742526ad5985d53f19da9 (patch) | |
| tree | 2e7a42e68a7c5077cafcec3eef7200848189655d /src/libstd/sys | |
| parent | 9e8fd2438377c0e90f2fc853486426a48611708a (diff) | |
| download | rust-65b144c964987970974742526ad5985d53f19da9.tar.gz rust-65b144c964987970974742526ad5985d53f19da9.zip | |
Stabilize std::os::unix::process::CommandExt::before_exec
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/unix/ext/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/ext/process.rs b/src/libstd/sys/unix/ext/process.rs index 3a7c59d4e6d..585dcbb9a34 100644 --- a/src/libstd/sys/unix/ext/process.rs +++ b/src/libstd/sys/unix/ext/process.rs @@ -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; |
