| Age | Commit message (Expand) | Author | Lines |
| 2023-07-05 | Auto merge of #112594 - ChrisDenton:process=-kill, r=Amanieu | bors | -5/+2 |
| 2023-07-01 | Return `Ok` on kill if process has already exited | Chris Denton | -5/+2 |
| 2023-06-21 | Actually save all the files | Thom Chiovoloni | -7/+6 |
| 2023-06-21 | Avoid fork/exec spawning on tvOS/watchOS, as those functions are marked as pr... | Thom Chiovoloni | -4/+48 |
| 2023-06-13 | fix: get the l4re target working again | Henrik Böving | -1/+17 |
| 2023-06-02 | Only determine clock res once; give up before sleeping more than 1 second | Florian Bartels | -23/+37 |
| 2023-06-02 | Retry to fork/spawn with exponential backoff | Florian Bartels | -10/+44 |
| 2023-04-26 | Spelling library/ | Josh Soref | -1/+1 |
| 2023-02-28 | Retry to spawn/fork up to 3 times when it failed because of an interruption | Florian Bartels | -2/+64 |
| 2023-02-28 | Add QNX Neutrino support to libstd | Florian Bartels | -3/+7 |
| 2023-01-18 | signal update string representation for haiku. | David Carlier | -0/+2 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -3/+3 |
| 2022-12-17 | Rollup merge of #105458 - Ayush1325:blocking_spawn, r=Mark-Simulacrum | Matthias Krüger | -0/+5 |
| 2022-12-12 | explain mem::forget(env_lock) in fork/exec | Ralf Jung | -3/+4 |
| 2022-12-11 | Implement blocking output | Ayush Singh | -0/+5 |
| 2022-10-20 | Change process spawning to inherit the parent's signal mask by default | Rain | -33/+39 |
| 2022-09-20 | Remove use of `io::ErrorKind::Other` in std | Patiga | -2/+2 |
| 2022-08-28 | Use posix_spawn for absolute paths on macOS | Rain | -1/+3 |
| 2022-06-05 | Remove SIGIO reference on Haiku | Ryan Zoeller | -0/+1 |
| 2022-06-03 | Auto merge of #95833 - notriddle:notriddle/human-readable-signals, r=yaahc | bors | -3/+79 |
| 2022-06-02 | Fix MIPS-specific signal bug | Michael Howell | -1/+10 |
| 2022-06-01 | std: show signal number along with name | Michael Howell | -43/+47 |
| 2022-05-09 | Use Rust 2021 prelude in std itself. | Mara Bos | -1/+0 |
| 2022-04-23 | std: `<ExitStatus as Display>::fmt` name the signal it died from | Michael Howell | -0/+63 |
| 2022-04-17 | Auto merge of #93530 - anonion0:pthread_sigmask_fix, r=JohnTitor | bors | -1/+2 |
| 2022-04-17 | move import to fix warning with emscripten target | Ralf Sager | -1/+2 |
| 2022-03-19 | Rollup merge of #93858 - krallin:process-process_group, r=dtolnay | Dylan DPC | -1/+14 |
| 2022-03-19 | Rollup merge of #92612 - atopia:update-lib-l4re, r=dtolnay | Dylan DPC | -1/+4 |
| 2022-03-17 | feat: Add use of bool::then in sys/unix/process | wcampbell | -3/+3 |
| 2022-03-14 | Add a `process_group` method to UNIX `CommandExt` | Thomas Orozco | -1/+14 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -5/+5 |
| 2022-03-09 | drop unused libc imports on L4Re | Benjamin Lamowski | -1/+4 |
| 2022-03-01 | Provide C FFI types via core::ffi, not just in std | Josh Triplett | -1/+1 |
| 2022-02-04 | Hide Repr details from io::Error, and rework `io::Error::new_const`. | Thom Chiovoloni | -8/+5 |
| 2022-01-31 | fix error handling for pthread_sigmask(3) | Ralf Sager | -2/+2 |
| 2021-11-12 | Refactor weak symbols in std::sys::unix | Josh Stone | -2/+2 |
| 2021-11-12 | Rollup merge of #90704 - ijackson:exitstatus-comments, r=joshtriplett | Matthias Krüger | -0/+3 |
| 2021-11-11 | unix::ExitStatus: Add comment saying that it's a wait status | Ian Jackson | -0/+3 |
| 2021-11-05 | Also note tool expectations of fork vs clone3 | Josh Stone | -0/+2 |
| 2021-11-05 | Update another comment on fork vs. clone3 | Josh Stone | -2/+2 |
| 2021-11-05 | Only use `clone3` when needed for pidfd | Josh Stone | -7/+6 |
| 2021-10-05 | Rollup merge of #88828 - FabianWolff:issue-88585, r=dtolnay | Manish Goregaokar | -3/+13 |
| 2021-10-03 | Rollup merge of #88305 - ijackson:exitstatus-debug, r=dtolnay | Manish Goregaokar | -2/+14 |
| 2021-10-01 | Call `libc::sigaction()` only on Android | Fabian Wolff | -3/+14 |
| 2021-09-28 | Clean up unneeded explicit pointer cast | David Tolnay | -1/+1 |
| 2021-09-10 | Use `libc::sigaction()` instead of `sys::signal()` to prevent a deadlock | Fabian Wolff | -4/+3 |
| 2021-08-24 | Manual Debug for Unix ExitCode ExitStatus ExitStatusError | Ian Jackson | -2/+14 |
| 2021-08-24 | Remove unnecessary unsafe block in `process_unix` | Léo Lanteri Thauvin | -2/+1 |
| 2021-08-19 | Fix an unused import warning. | Dan Gohman | -1/+1 |
| 2021-08-19 | Update PidFd for the new I/O safety APIs. | Dan Gohman | -5/+11 |