Add std::process
Per [RFC 579](https://github.com/rust-lang/rfcs/pull/579), this commit adds a new `std::process` module. This module is largely based on the existing `std::old_io::process` module, but refactors the API to use `OsStr` and other new standards set out by IO reform. The existing module is not yet deprecated, to allow for the new API to get a bit of testing before a mass migration to it.
This commit is contained in:
parent
39b463f153
commit
4175f1ce2f
16 changed files with 2051 additions and 36 deletions
|
@ -50,7 +50,9 @@ pub mod net;
|
|||
pub mod os;
|
||||
pub mod os_str;
|
||||
pub mod pipe;
|
||||
pub mod pipe2;
|
||||
pub mod process;
|
||||
pub mod process2;
|
||||
pub mod rwlock;
|
||||
pub mod stack_overflow;
|
||||
pub mod sync;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue