| Age | Commit message (Expand) | Author | Lines |
| 2017-01-09 | Auto merge of #38866 - alexcrichton:try-wait, r=aturon | bors | -0/+15 |
| 2017-01-06 | std: Add a nonblocking `Child::try_wait` method | Alex Crichton | -0/+15 |
| 2017-01-04 | std: Don't pass overlapped handles to processes | Alex Crichton | -9/+5 |
| 2016-11-30 | just add one method named creation_flags, fix the tidy error | Ted Mielczarek | -4/+1 |
| 2016-11-30 | Add std::os::windows::process::CommandExt, with set_creation_flags and add_cr... | Ted Mielczarek | -1/+9 |
| 2016-08-24 | Use `#[prelude_import]` in `libstd`. | Jeffrey Seyfried | -3/+0 |
| 2016-05-24 | std: Stabilize APIs for the 1.10 release | Alex Crichton | -3/+24 |
| 2016-04-26 | std: Allow creating ExitStatus from raw values | Alex Crichton | -0/+6 |
| 2016-03-22 | fix alignment | Jorge Aparicio | -2/+2 |
| 2016-03-22 | try! -> ? | Jorge Aparicio | -24/+24 |
| 2016-03-08 | std: Don't always create stdin for children | Alex Crichton | -2/+4 |
| 2016-02-10 | std: Push process stdio setup in std::sys | Alex Crichton | -90/+135 |
| 2016-02-10 | std: Lift out Windows' CreateProcess lock a bit | Alex Crichton | -13/+20 |
| 2016-02-10 | std: Rename Stdio::None to Stdio::Null | Alex Crichton | -6/+5 |
| 2016-02-10 | std: Push Child's exit status to sys::process | Alex Crichton | -3/+5 |
| 2016-02-10 | std: Refactor process spawning on Unix | Alex Crichton | -3/+0 |
| 2016-02-03 | std: Properly handle interior NULs in std::process | Kamal Marhubi | -29/+52 |
| 2016-01-26 | Auto merge of #31120 - alexcrichton:attribute-deny-warnings, r=brson | bors | -1/+0 |
| 2016-01-26 | Fix warnings during tests | Alex Crichton | -1/+0 |
| 2016-01-25 | std: Fix some behavior without stdio handles | Alex Crichton | -3/+8 |
| 2015-11-09 | std: Migrate to the new libc | Alex Crichton | -37/+31 |
| 2015-11-06 | std: Refactor process exit code handling slightly | Alex Crichton | -13/+8 |
| 2015-07-20 | std: Add IntoRaw{Fd,Handle,Socket} traits | Alex Crichton | -0/+2 |
| 2015-06-09 | std: Tweak process raising/lowering implementations | Alex Crichton | -17/+5 |
| 2015-05-29 | Auto merge of #25494 - alexcrichton:stdio-from-raw, r=aturon | bors | -1/+16 |
| 2015-05-27 | Use `const fn` to abstract away the contents of UnsafeCell & friends. | Eduard Burtescu | -2/+2 |
| 2015-05-16 | std: Implement lowering and raising for process IO | Alex Crichton | -1/+16 |
| 2015-05-16 | std: Add an unstable method Child::id | Alex Crichton | -0/+6 |
| 2015-05-07 | std: Rename sys::foo2 modules to sys::foo | Alex Crichton | -0/+429 |
| 2015-04-14 | std: Remove old_io/old_path/rand modules | Alex Crichton | -518/+0 |
| 2015-04-01 | Test fixes and rebase conflicts | Alex Crichton | -2/+2 |
| 2015-03-31 | Test fixes and rebase conflicts, round 2 | Alex Crichton | -1/+0 |
| 2015-03-31 | std: Clean out #[deprecated] APIs | Alex Crichton | -5/+11 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -5/+5 |
| 2015-03-20 | std: Remove old_io/old_path from the prelude | Alex Crichton | -1/+1 |
| 2015-03-13 | Auto merge of #23229 - aturon:stab-path, r=alexcrichton | bors | -1/+1 |
| 2015-03-12 | Stabilize std::path | Aaron Turon | -1/+1 |
| 2015-03-12 | std: Remove #[allow] directives in sys modules | Alex Crichton | -3/+0 |
| 2015-03-05 | std: Deprecate the old_io::process module | Alex Crichton | -0/+2 |
| 2015-03-04 | std: Deprecate std::old_io::fs | Alex Crichton | -1/+1 |
| 2015-02-20 | Register new snapshots | Alex Crichton | -194/+0 |
| 2015-02-19 | Round 5 test fixes and rebase conflicts | Alex Crichton | -0/+29 |
| 2015-02-18 | Round 4 test fixes and rebase conflicts | Alex Crichton | -1/+165 |
| 2015-02-18 | Remove `i`, `is`, `u`, or `us` suffixes that are not necessary. | Niko Matsakis | -1/+1 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -5/+4 |
| 2015-02-04 | remove all kind annotations from closures | Jorge Aparicio | -1/+1 |
| 2015-02-03 | Rename std::path to std::old_path | Aaron Turon | -1/+1 |
| 2015-02-02 | rollup merge of #21830: japaric/for-cleanup | Alex Crichton | -4/+4 |
| 2015-02-02 | `for x in xs.into_iter()` -> `for x in xs` | Jorge Aparicio | -1/+1 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -3/+3 |