about summary refs log tree commit diff
path: root/src/libstd/run.rs
AgeCommit message (Expand)AuthorLines
2013-10-23Making fields in std and extra : private #4386reedlepee-2/+3
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-1/+1
2013-10-15path2: Adjust the API to remove all the _str mutation methodsKevin Ballard-2/+2
2013-10-15path2: Replace the path module outrightKevin Ballard-4/+4
2013-10-10Remove usage of io::FILE_writerAlex Crichton-12/+13
2013-10-10Move std::run off of std::ioAlex Crichton-769/+65
2013-09-30std: Remove usage of fmt!Alex Crichton-26/+26
2013-09-18auto merge of #9280 : alexcrichton/rust/less-c++, r=brsonbors-4/+17
2013-09-18Remove rust_run_program.cppAlex Crichton-4/+17
2013-09-18Register new snapshotsAlex Crichton-2/+0
2013-09-16switch Drop to `&mut self`Daniel Micay-6/+3
2013-09-05Rename str::from_bytes to str::from_utf8, closes #8985Florian Hahn-12/+12
2013-08-29Revert "auto merge of #8645 : alexcrichton/rust/issue-6436-run-non-blocking, ...Brian Anderson-208/+891
2013-08-27Implement process bindings to libuvAlex Crichton-891/+208
2013-08-23Fix two small warningsAndrew Dunham-1/+1
2013-08-19Try to fix mac valgrind bot by disabling thread-heavy activities.Graydon Hoare-9/+1
2013-08-19Add externfn macro and correctly label fixed_stack_segmentsNiko Matsakis-1/+18
2013-08-18auto merge of #8551 : huonw/rust/speling, r=alexcrichtonbors-3/+3
2013-08-16auto merge of #8532 : kballard/rust/cstr-cleanup, r=ericktbors-2/+2
2013-08-16doc: correct spelling in documentation.Huon Wilson-3/+3
2013-08-15Add ToCStr method .with_c_str()Kevin Ballard-2/+2
2013-08-14std: Change ProcessOptions struct to have an option of a ~ vectorTim Chevalier-10/+10
2013-08-09Merge remote-tracking branch 'remotes/origin/master' into remove-str-trailing...Erick Tryzelaar-4/+4
2013-08-09std: more windows fixes to os.rs and run.rsErick Tryzelaar-1/+4
2013-08-09auto merge of #8369 : yichoi/rust/arm-test, r=sanxiynbors-4/+4
2013-08-08Merge remote-tracking branch 'remotes/origin/master' into remove-str-trailing...Erick Tryzelaar-7/+5
2013-08-07Forbid `priv` where it has no effectAlex Crichton-3/+3
2013-08-07Implement DoubleEndedIterator on RangeKevin Ballard-4/+2
2013-08-07std: run test fix for ARM androidYoung-il Choi-4/+4
2013-08-04Merge remote-tracking branch 'remotes/origin/master' into str-remove-nullErick Tryzelaar-12/+12
2013-08-04Remove trailing null from stringsErick Tryzelaar-1/+2
2013-08-04std: replace str::as_c_str with std::c_strErick Tryzelaar-7/+8
2013-08-04std: rewrite run::with_{argv,envp,dirp} to copy C stringsErick Tryzelaar-44/+59
2013-08-03remove obsolete `foreach` keywordDaniel Micay-12/+12
2013-08-03replace all remaining `for` with `foreach` or `do`Daniel Micay-2/+3
2013-08-02librustc: Disallow "unsafe" for external functionsPatrick Walton-2/+2
2013-08-02replace `range` with an external iteratorDaniel Micay-4/+1
2013-08-01migrate many `for` loops to `foreach`Daniel Micay-12/+11
2013-08-01make `in` and `foreach` get treated as keywordsDaniel Micay-8/+8
2013-07-24std: str.as_bytes_with_null_consume() => str.to_bytes_with_null()Erick Tryzelaar-1/+1
2013-07-23std: add test for str::as_c_strErick Tryzelaar-1/+0
2013-07-23std: move StrUtil::as_c_str into StrSliceErick Tryzelaar-5/+5
2013-07-20librustc: Remove `pub extern` and `priv extern` from the language.Patrick Walton-3/+3
2013-07-17librustc: Remove all uses of "copy".Patrick Walton-1/+2
2013-07-10Switch over to new range_rev semantics; fix #5270.Felix S. Klock II-1/+1
2013-07-08Correct illegal pattern in windows-only codeNiko Matsakis-2/+2
2013-07-08Patch up some code that was using irrefutable patterns incorrectly.Niko Matsakis-6/+12
2013-07-07remove some method resolve workaroundsDaniel Micay-1/+1
2013-07-04Convert vec::{as_imm_buf, as_mut_buf} to methods.Huon Wilson-4/+4
2013-06-28std: adjust run.rs test for androidYoung-il Choi-3/+149