summary refs log tree commit diff
path: root/src/libnative/io/process.rs
AgeCommit message (Expand)AuthorLines
2014-06-26librustc: Ensure that proc upvars have static lifetime.Patrick Walton-0/+4
2014-06-16std: Improve pipe() functionalityAlex Crichton-80/+123
2014-06-12Basic iOS supportValerii Hiora-0/+1
2014-06-10Fix more misspelled comments and strings.Joseph Crail-1/+1
2014-06-09std: Remove the as_utf16_p functionsAlex Crichton-23/+22
2014-06-06libs: Fix miscellaneous fallout of librustrtAlex Crichton-12/+12
2014-06-06native: Deal with the rtio changesAlex Crichton-40/+43
2014-06-05Fallout from the libcollections movementAlex Crichton-6/+9
2014-05-30lib{std,core,debug,rustuv,collections,native,regex}: Fix snake_case errors.Kevin Butler-1/+2
2014-05-28auto merge of #14477 : alexcrichton/rust/issue-14456, r=brsonbors-52/+78
2014-05-27native: Ignore stdio fds with /dev/nullAlex Crichton-52/+78
2014-05-27std: Remove String's to_ownedRicho Healey-5/+5
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-6/+6
2014-05-22libcore: Remove all uses of `~str` from `libcore`.Patrick Walton-4/+4
2014-05-20core: Stabilize the mem moduleAlex Crichton-3/+3
2014-05-14Process::new etc should support non-utf8 commands/argsAaron Turon-95/+90
2014-05-13io: Implement process wait timeoutsAlex Crichton-52/+311
2014-05-13Test Unicode support of process spawningPhil Ruffwind-0/+4
2014-05-13Fix make_command_line to handle Unicode correctlyPhil Ruffwind-7/+8
2014-05-13Use CreateProcessW instead of CreateProcessAPhil Ruffwind-7/+10
2014-05-11core: Remove the cast moduleAlex Crichton-3/+3
2014-05-08Handle fallout in libnativeKevin Ballard-2/+2
2014-04-19std: Add an experimental connect_timeout functionAlex Crichton-11/+2
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-8/+8
2014-04-18Update the rest of the compiler with ~[T] changesAlex Crichton-10/+6
2014-04-11Fix tests. Add Vec<u8> conversion to StrBuf.Huon Wilson-1/+1
2014-04-10libstd: Implement `StrBuf`, a new string buffer type like `Vec`, andPatrick Walton-4/+5
2014-04-08auto merge of #13397 : alexcrichton/rust/rollup, r=alexcrichtonbors-2/+2
2014-04-08Register new snapshotsAlex Crichton-2/+2
2014-04-07native: Try hard to not malloc on a forked childAlex Crichton-1/+31
2014-04-07Fix some windows rpass testsAlex Crichton-26/+55
2014-04-04Fix fallout from std::libc separationCorey Richardson-14/+14
2014-04-01auto merge of #13115 : huonw/rust/rand-errors, r=alexcrichtonbors-1/+1
2014-04-01std: migrate the errno -> IoError converter from libnative.Huon Wilson-1/+1
2014-03-31native: Switch field privacy as necessaryAlex Crichton-3/+3
2014-03-30Removed deprecated functions `map` and `flat_map` for vectors and slices.Marvin Löbel-2/+4
2014-03-28native: Use WNOHANG before signalingAlex Crichton-23/+58
2014-03-22native: Fix a possible deadlock in spawnAlex Crichton-107/+105
2014-03-20rename std::vec -> std::sliceDaniel Micay-4/+4
2014-02-28std: Avoid using "{:?}" in format stringsAlex Crichton-2/+2
2014-02-23Roll std::run into std::io::processAlex Crichton-36/+62
2014-02-16Allow configuration of uid/gid/detach on processesAlex Crichton-21/+74
2014-02-17Remove CloneableTuple and ImmutableTuple traitsBrendan Zabarauskas-2/+2
2014-02-03Fixing remaining warnings and errors throughoutAlex Crichton-13/+12
2014-02-03native: Require all results are used and fix falloutAlex Crichton-10/+10
2014-01-29Flag Result as #[must_use] and deal with fallout.Alex Crichton-1/+1
2014-01-23Update flip() to be rev().Sean Chalmers-1/+1
2014-01-23Rename Invert to Flip - Issue 10632Sean Chalmers-1/+1
2014-01-05Handle EINTR throughout libnativeAlex Crichton-8/+9
2013-12-27Implement native TCP I/OAlex Crichton-2/+2