about summary refs log tree commit diff
path: root/src/libnative/io/pipe_unix.rs
AgeCommit message (Expand)AuthorLines
2014-11-08Runtime removal: refactor pipes and networkingAaron Turon-339/+0
2014-09-24liblibc and libnative: send() should use const buffers.NODA, Kai-1/+1
2014-09-16Fallout from renamingAaron Turon-1/+1
2014-08-24native: clone/close_accept for win32 pipesAlex Crichton-5/+5
2014-08-24native: Implement clone/close_accept for unixAlex Crichton-18/+70
2014-08-18libsyntax: Remove the `use foo = bar` syntax from the language in favorPatrick Walton-2/+2
2014-08-04Change everything returning `libc::sockaddr_storage` to use an &mut out-ptr i...Andrew Poelstra-10/+12
2014-07-24libsyntax: Remove `~self` and `mut ~self` from the language.Patrick Walton-1/+2
2014-07-08std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`.Richo Healey-1/+1
2014-06-29c_str: replace .with_ref with .as_ptr throughout the codebase.Huon Wilson-1/+1
2014-06-28Rename all raw pointers as necessaryAlex Crichton-4/+4
2014-06-15Register new snapshotsAlex Crichton-6/+6
2014-06-08Remove the dead code identified by the new lintJakub Wieczorek-1/+4
2014-06-06native: Deal with the rtio changesAlex Crichton-10/+11
2014-05-21std,green: Mark some queue types as NoShareAlex Crichton-1/+1
2014-05-19native: Remove UnsafeArc in favor of just ArcAlex Crichton-7/+7
2014-05-11core: Remove the cast moduleAlex Crichton-2/+1
2014-05-07Test fixes and rebase conflictsAlex Crichton-1/+1
2014-05-07native: Implement timeouts for unix networkingAlex Crichton-29/+70
2014-05-07std: Add close_{read,write}() methods to I/OAlex Crichton-0/+7
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-6/+10
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-3/+3
2014-04-24std: Add timeouts to unix connect/acceptAlex Crichton-29/+30
2014-04-24native: Remove unused and untested UnixDatagramAlex Crichton-71/+0
2014-04-22native: Unlink unix socket paths on dropAlex Crichton-1/+15
2014-04-04Fix fallout from std::libc separationCorey Richardson-1/+1
2014-03-31native: Switch field privacy as necessaryAlex Crichton-4/+4
2014-03-27Fix fallout of removing default boundsAlex Crichton-6/+6
2014-02-27native: Improve windows file handlingAlex Crichton-2/+2
2014-02-23std: Move intrinsics to std::intrinsics.Brian Anderson-1/+1
2014-02-20Mass rename if_ok! to try!Alex Crichton-5/+5
2014-02-16Implement named pipes for windows, touch up unixAlex Crichton-182/+167
2014-02-16Move unix pipes implementation to pipe_unix.rsAlex Crichton-0/+300