]> git.lizzy.rs Git - rust.git/commit
auto merge of #12103 : alexcrichton/rust/unix, r=brson
authorbors <bors@rust-lang.org>
Tue, 18 Feb 2014 04:01:52 +0000 (20:01 -0800)
committerbors <bors@rust-lang.org>
Tue, 18 Feb 2014 04:01:52 +0000 (20:01 -0800)
commit62d7d0079f1b539231cb8cbb8f6368d2e4be602c
treedec2b063b63136b245d6759cf4940c070c9f8161
parent03c5342419fe49d060f2ea26f77ae3e716945a90
parenta526aa139ec1c95cbad4c1d3187c437eb45d4bae
auto merge of #12103 : alexcrichton/rust/unix, r=brson

There's a few parts to this PR

* Implement unix pipes in libnative for unix platforms (thanks @Geal!)
* Implement named pipes in libnative for windows (terrible, terrible code)
* Remove `#[cfg(unix)]` from `mod unix` in `std::io::net`. This is a terrible name for what it is, but that's the topic of #12093.

The windows implementation was significantly more complicated than I thought it would be, but it seems to be passing all the tests. now.

Closes #11201