Uh oh!
There was an error while loading. Please reload this page.
Add std::process - #22119
Conversation
aturon
commented
Feb 9, 2015
rust-highfive
commented
Feb 9, 2015
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
aturon
commented
Feb 9, 2015
This is WIP for two reasons:
|
30d9074 to
2ffc70fCompareb96a50b to
f994b8fCompareThere was a problem hiding this comment.
I think that in general we've had pretty good success with trying to have as few #[cfg] directives as possible, could this logic be pushed into each respective sys module?
There was a problem hiding this comment.
This should probably not be an int.
aturon
commented
Feb 13, 2015
@bors: retry |
bors
commented
Feb 13, 2015
⌛ Testing commit 1a72dac with merge d05755d... |
bors
commented
Feb 13, 2015
💔 Test failed - auto-win-32-opt |
9c50a35 to
0f697c2Compareaturon
commented
Feb 14, 2015
@bors: r=alexcrichton 0f697c2 p=1 |
bors
commented
Feb 14, 2015
⌛ Testing commit 0f697c2 with merge 1ac4113... |
bors
commented
Feb 14, 2015
💔 Test failed - auto-win-32-nopt-t |
aturon
commented
Feb 14, 2015
@bors: r=alexcrichton bec4af2 p=1 |
bors
commented
Feb 14, 2015
⌛ Testing commit bec4af2 with merge 972bafc... |
bors
commented
Feb 14, 2015
💔 Test failed - auto-linux-64-x-android-t |
Per [RFC 579](rust-lang/rfcs#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.
aturon
commented
Feb 14, 2015
bors
commented
Feb 14, 2015
Per [RFC 579](rust-lang/rfcs#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.
bors
commented
Feb 14, 2015
…yumu Less conjuration magic
Per RFC 579, this commit
adds a new
std::processmodule. This module is largely based on theexisting
std::old_io::processmodule, but refactors the API to useOsStrand 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.