| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-04-24 | Rollup merge of #49461 - andreastt:child-kill-exited, r=Mark-Simulacrum | kennytm | -2/+11 | |
| std: Child::kill() returns error if process has already exited This patch makes it clear in std::process::Child::kill()'s API documentation that an error is returned if the child process has already cleanly exited. This is implied by the example, but not called out explicitly. | ||||
| 2018-04-17 | fixup! std: Child::kill() returns error if process has already exited | Andreas Tolfsen | -1/+1 | |
| 2018-04-08 | fixup! std: Child::kill() returns error if process has already exited | Andreas Tolfsen | -1/+1 | |
| 2018-04-05 | std: Inline some Termination-related methods | Alex Crichton | -0/+2 | |
| These were showing up in tests and in binaries but are trivially optimize-able away, so add `#[inline]` attributes so LLVM has an opportunity to optimize them out. | ||||
| 2018-04-02 | Fix "since" version for getpid feature. | Thayne McCombs | -1/+1 | |
| It was stabilized right before the beta branch was cut for 1.26.0. See https://github.com/rust-lang/rust/pull/49523#issuecomment-377996315 | ||||
| 2018-04-01 | Stabilize `std::process::id()` | Thayne McCombs | -2/+1 | |
| Fixes #44971 | ||||
| 2018-03-29 | fixup! std: Child::kill() returns error if process has already exited | Andreas Tolfsen | -1/+6 | |
| 2018-03-28 | fixup! std: Child::kill() returns error if process has already exited | Andreas Tolfsen | -1/+4 | |
| 2018-03-28 | std: Child::kill() returns error if process has already exited | Andreas Tolfsen | -2/+3 | |
| This patch makes it clear in std::process::Child::kill()'s API documentation that an error is returned if the child process has already cleanly exited. This is implied by the example, but not called out explicitly. | ||||
| 2018-03-25 | Minor formatting consistency fix. | Alexander Ronald Altman | -1/+1 | |
| 2018-03-21 | termination_trait: Make error message more helpful | Tyler Mandry | -2/+3 | |
| 2018-03-21 | termination_trait: Put examples in error help, not label | Tyler Mandry | -1/+1 | |
| 2018-03-21 | termination_trait: Add () example to error message | Tyler Mandry | -1/+1 | |
| 2018-03-03 | Move process::ExitCode internals to sys | Scott McMurray | -21/+8 | |
| Now begins the saga of fixing compilation errors on other platforms... | ||||
| 2018-02-28 | Fix linkchecker | Scott McMurray | -2/+2 | |
| 2018-02-27 | Put some thought and documentation effort into process::ExitCode | Scott McMurray | -24/+52 | |
| 2018-02-24 | Restrict the Termination impls to simplify stabilization | Scott McMurray | -6/+18 | |
| Make a minimal commitment for stabilization. More impls are likely in future, but are not necessary at this time. | ||||
| 2018-02-22 | move Termination trait to std::process | Niko Matsakis | -0/+67 | |
| 2018-01-26 | add test checking that process::Command is Send | Corentin Henry | -0/+6 | |
| 2018-01-11 | Make tests build on CloudABI. | Ed Schouten | -1/+1 | |
| There are some tests that need to be disabled on CloudABI specifically, due to the fact that the shims cannot be built in combination with unix::ext or windows::ext. Also improve the scoping of some imports to suppress compiler warnings. | ||||
| 2018-01-04 | Fix an error in std::process documentation | Loïc Damien | -2/+2 | |
| 2017-12-26 | Rollup merge of #46943 - malbarbo:process-test-busybox, r=alexcrichton | kennytm | -1/+1 | |
| Fix process test when using busybox mkdir busybox mkdir . returns 0 busybox mkdir ./ returns 1 | ||||
| 2017-12-24 | Capture environment at spawn | Diggory Blake | -4/+25 | |
| 2017-12-22 | Fix process test when using busybox mkdir | Marco A L Barbosa | -1/+1 | |
| busybox mkdir . returns 0 busybox mkdir ./ returns 1 | ||||
| 2017-11-22 | Clarify stdin behavior of `Command::output`. | Corey Farwell | -2/+4 | |
| Fixes #44929. | ||||
| 2017-10-29 | Auto merge of #45295 - Technius:docs/process, r=steveklabnik | bors | -11/+72 | |
| Improve std::process module docs Addresses part of #29370 I've changed the first `cat` example to a "Hello World" example involving echo, and I've also added another example showing how to pipe output. I'm still working on the module-level description. For now, I'd like feedback on the examples. r? @steveklabnik | ||||
| 2017-10-28 | Add no_run to process examples involving unix commands | Bryan Tan | -2/+2 | |
| 2017-10-26 | Rollup merge of #45059 - tmccombs:pid, r=alexcrichton | kennytm | -0/+19 | |
| Add current_pid function Fixes #44971 | ||||
| 2017-10-20 | Fix most rendering warnings from switching to CommonMark | steveklabnik | -1/+1 | |
| 2017-10-17 | Add child process IO handling docs | Bryan Tan | -7/+18 | |
| 2017-10-17 | Rollup merge of #45151 - Pirh:stdio_default_docs, r=frewsxcv | kennytm | -0/+18 | |
| Document defaults for stdin, stdout, and stderr methods of Command For #29370 | ||||
| 2017-10-15 | Create section on how to spawn processes; change module description | Bryan Tan | -14/+28 | |
| 2017-10-15 | Fix std::process hello world example | Bryan Tan | -1/+1 | |
| 2017-10-15 | Rollup merge of #45113 - Pirh:process_output_links, r=steveklabnik | kennytm | -0/+9 | |
| Link std::process::Output to Command and Child As per #29370 | ||||
| 2017-10-14 | Fixed accidental deletion of colon | Bryan Tan | -1/+1 | |
| 2017-10-14 | Add a brief description and two examples to std::process | Bryan Tan | -7/+43 | |
| 2017-10-13 | Add line break after summary of process::Output | Pirh | -3/+5 | |
| 2017-10-10 | Remove misleading line on Windows Subsystem stdio | Pirh | -9/+0 | |
| 2017-10-10 | Auto merge of #45141 - kennytm:rollup, r=kennytm | bors | -1/+108 | |
| Rollup of 9 pull requests - Successful merges: #44962, #45051, #45091, #45106, #45117, #45118, #45120, #45125, #45136 - Failed merges: | ||||
| 2017-10-10 | Auto merge of #44822 - frewsxcv:frewsxcv-eprintln, r=Kimundi | bors | -3/+1 | |
| Migrate to eprint/eprintln macros where appropriate. None | ||||
| 2017-10-09 | Document defaults for stdin, stdout, and stderr methods of Command | Pirh | -0/+27 | |
| 2017-10-08 | Link std::process::Output to Command and Child | Pirh | -1/+8 | |
| 2017-10-08 | Remove ./ prefix from relative URLs | Pirh | -10/+10 | |
| Also remove trailing whitespace to pass tidy checks. | ||||
| 2017-10-08 | Add links and examples for std::process::Stdio | Pirh | -1/+108 | |
| As per #29370 | ||||
| 2017-10-07 | Change current_pid to just `id`. | Thayne McCombs | -3/+4 | |
| 2017-10-07 | Add missing colon. | Thayne McCombs | -1/+1 | |
| 2017-10-06 | Add current_pid function | Thayne McCombs | -0/+18 | |
| Fixes #44971 | ||||
| 2017-10-02 | Document that process::abort will not call the panic hook | Pirh | -1/+3 | |
| 2017-09-28 | Migrate to eprint/eprintln macros where appropriate. | Corey Farwell | -3/+1 | |
| 2017-09-27 | Explain difference between panic! and abort in abort docs | Pirh | -1/+10 | |
| As per #29370 | ||||
