about summary refs log tree commit diff
path: root/src/libstd/sys/windows/process.rs
AgeCommit message (Expand)AuthorLines
2017-01-09Auto merge of #38866 - alexcrichton:try-wait, r=aturonbors-0/+15
2017-01-06std: Add a nonblocking `Child::try_wait` methodAlex Crichton-0/+15
2017-01-04std: Don't pass overlapped handles to processesAlex Crichton-9/+5
2016-11-30just add one method named creation_flags, fix the tidy errorTed Mielczarek-4/+1
2016-11-30Add std::os::windows::process::CommandExt, with set_creation_flags and add_cr...Ted Mielczarek-1/+9
2016-08-24Use `#[prelude_import]` in `libstd`.Jeffrey Seyfried-3/+0
2016-05-24std: Stabilize APIs for the 1.10 releaseAlex Crichton-3/+24
2016-04-26std: Allow creating ExitStatus from raw valuesAlex Crichton-0/+6
2016-03-22fix alignmentJorge Aparicio-2/+2
2016-03-22try! -> ?Jorge Aparicio-24/+24
2016-03-08std: Don't always create stdin for childrenAlex Crichton-2/+4
2016-02-10std: Push process stdio setup in std::sysAlex Crichton-90/+135
2016-02-10std: Lift out Windows' CreateProcess lock a bitAlex Crichton-13/+20
2016-02-10std: Rename Stdio::None to Stdio::NullAlex Crichton-6/+5
2016-02-10std: Push Child's exit status to sys::processAlex Crichton-3/+5
2016-02-10std: Refactor process spawning on UnixAlex Crichton-3/+0
2016-02-03std: Properly handle interior NULs in std::processKamal Marhubi-29/+52
2016-01-26Auto merge of #31120 - alexcrichton:attribute-deny-warnings, r=brsonbors-1/+0
2016-01-26Fix warnings during testsAlex Crichton-1/+0
2016-01-25std: Fix some behavior without stdio handlesAlex Crichton-3/+8
2015-11-09std: Migrate to the new libcAlex Crichton-37/+31
2015-11-06std: Refactor process exit code handling slightlyAlex Crichton-13/+8
2015-07-20std: Add IntoRaw{Fd,Handle,Socket} traitsAlex Crichton-0/+2
2015-06-09std: Tweak process raising/lowering implementationsAlex Crichton-17/+5
2015-05-29Auto merge of #25494 - alexcrichton:stdio-from-raw, r=aturonbors-1/+16
2015-05-27Use `const fn` to abstract away the contents of UnsafeCell & friends.Eduard Burtescu-2/+2
2015-05-16std: Implement lowering and raising for process IOAlex Crichton-1/+16
2015-05-16std: Add an unstable method Child::idAlex Crichton-0/+6
2015-05-07std: Rename sys::foo2 modules to sys::fooAlex Crichton-0/+429
2015-04-14std: Remove old_io/old_path/rand modulesAlex Crichton-518/+0
2015-04-01Test fixes and rebase conflictsAlex Crichton-2/+2
2015-03-31Test fixes and rebase conflicts, round 2Alex Crichton-1/+0
2015-03-31std: Clean out #[deprecated] APIsAlex Crichton-5/+11
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-5/+5
2015-03-20std: Remove old_io/old_path from the preludeAlex Crichton-1/+1
2015-03-13Auto merge of #23229 - aturon:stab-path, r=alexcrichtonbors-1/+1
2015-03-12Stabilize std::pathAaron Turon-1/+1
2015-03-12std: Remove #[allow] directives in sys modulesAlex Crichton-3/+0
2015-03-05std: Deprecate the old_io::process moduleAlex Crichton-0/+2
2015-03-04std: Deprecate std::old_io::fsAlex Crichton-1/+1
2015-02-20Register new snapshotsAlex Crichton-194/+0
2015-02-19Round 5 test fixes and rebase conflictsAlex Crichton-0/+29
2015-02-18Round 4 test fixes and rebase conflictsAlex Crichton-1/+165
2015-02-18Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.Niko Matsakis-1/+1
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-5/+4
2015-02-04remove all kind annotations from closuresJorge Aparicio-1/+1
2015-02-03Rename std::path to std::old_pathAaron Turon-1/+1
2015-02-02rollup merge of #21830: japaric/for-cleanupAlex 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