| Age | Commit message (Expand) | Author | Lines |
| 2021-06-01 | Support Android ndk versions `r23-beta3` and up | Tilmann Meyer | -1/+0 |
| 2021-05-26 | Rename opensbd to openbsd | Albert Ford | -3/+3 |
| 2021-05-23 | Auto merge of #85490 - CDirkx:fix-vxworks, r=dtolnay | bors | -4/+30 |
| 2021-05-21 | Auto merge of #85060 - ChrisDenton:win-file-exists, r=yaahc | bors | -1/+1 |
| 2021-05-20 | Rollup merge of #85275 - CDirkx:memchr, r=m-ou-se | Guillaume Gomez | -1/+1 |
| 2021-05-20 | Not implement `os::unix::fs::chroot` for `vxworks` | Christiaan Dirkx | -1/+1 |
| 2021-05-20 | Add `ExitStatusError` for `vxworks` | Christiaan Dirkx | -3/+29 |
| 2021-05-19 | Move the implementation of `Path::exists` to `sys_common::fs` so platforms ca... | Chris Denton | -1/+1 |
| 2021-05-19 | Rename `rterr` to `rtprintpanic` | Christiaan Dirkx | -1/+1 |
| 2021-05-19 | Replace `sys_common::util::report_overflow` with `rterr!` | Christiaan Dirkx | -3/+5 |
| 2021-05-18 | Auto merge of #82973 - ijackson:exitstatuserror, r=yaahc | bors | -7/+52 |
| 2021-05-14 | Move `std::memchr` to `sys_common` | Christiaan Dirkx | -1/+1 |
| 2021-05-13 | Tolerate SIGTRAP for panic abort after panic::always_abort | Ian Jackson | -1/+1 |
| 2021-05-12 | Provide ExitStatusError | Ian Jackson | -7/+52 |
| 2021-05-07 | panic/fork test: Do not run on emscripten | Ian Jackson | -0/+1 |
| 2021-05-07 | panic ui test: Provide comprehensive test for panic after fork | Ian Jackson | -0/+3 |
| 2021-05-07 | panic tests: Command: Test that we do not unwind past fork | Ian Jackson | -0/+23 |
| 2021-05-07 | panic/fork: Command: Do not unwind after fork() in child | Ian Jackson | -0/+1 |
| 2021-05-06 | Rollup merge of #84712 - joshtriplett:simplify-chdir, r=yaahc | Dylan DPC | -5/+3 |
| 2021-05-03 | Move `std::sys::unix::ext` to `std::os::unix` | Christiaan Dirkx | -5374/+0 |
| 2021-05-03 | Auto merge of #84842 - blkerby:null_lowercase, r=joshtriplett | bors | -5/+5 |
| 2021-05-02 | Change 'NULL' to 'null' | Brent Kerby | -5/+5 |
| 2021-05-02 | Use ErrorKind::OutOfMemory in unix, windows, and wasi | Kornel | -0/+1 |
| 2021-04-30 | Auto merge of #84716 - joshtriplett:chroot, r=dtolnay | bors | -0/+33 |
| 2021-04-30 | Auto merge of #84522 - CDirkx:cmath, r=yaahc | bors | -27/+29 |
| 2021-04-30 | Add std::os::unix::fs::chroot to change the root directory of the current pro... | Josh Triplett | -0/+33 |
| 2021-04-29 | Simplify chdir implementation and minimize unsafe block | Josh Triplett | -5/+3 |
| 2021-04-28 | Reuse `unix::cmath` | Christiaan Dirkx | -27/+29 |
| 2021-04-25 | Rollup merge of #84541 - KaiJewson:inline-raw, r=m-ou-se | Dylan DPC | -0/+31 |
| 2021-04-25 | Inline most raw socket, fd and handle conversions | KaiJewson | -0/+31 |
| 2021-04-25 | Auto merge of #84115 - CDirkx:rt, r=m-ou-se | bors | -32/+30 |
| 2021-04-23 | Explicitly implement `!Send` and `!Sync` for `sys::{Args, Env}` | Christiaan Dirkx | -10/+10 |
| 2021-04-22 | Rollup merge of #84413 - CDirkx:args_inner_debug, r=m-ou-se | Dylan DPC | -3/+4 |
| 2021-04-22 | Rollup merge of #84402 - CDirkx:rwlock, r=dtolnay | Dylan DPC | -1/+53 |
| 2021-04-22 | Document that `init` and `cleanup` are not guaranteed to run | Christiaan Dirkx | -0/+2 |
| 2021-04-22 | Apply suggestions from review | Christiaan Dirkx | -2/+2 |
| 2021-04-22 | Move most init to `sys::init` | Christiaan Dirkx | -25/+19 |
| 2021-04-22 | Remove `sys::args::Args::inner_debug` and use `Debug` instead | Christiaan Dirkx | -3/+4 |
| 2021-04-22 | Move all cleanup to `sys::cleanup` | Christiaan Dirkx | -1/+4 |
| 2021-04-22 | Rework `at_exit` to `cleanup` | Christiaan Dirkx | -8/+7 |
| 2021-04-21 | Move `sys_common::rwlock::StaticRWLock` etc. to `sys::unix::rwlock` | Christiaan Dirkx | -1/+53 |
| 2021-04-21 | Apply suggestions from code review | Christiaan Dirkx | -2/+4 |
| 2021-04-19 | Fix `vxworks` compilation errors | Christiaan Dirkx | -10/+23 |
| 2021-04-19 | Move `sys::vxworks` code to `sys::unix` | Christiaan Dirkx | -9/+279 |
| 2021-04-18 | Rename `NotSupported` to `Unsupported` | Christiaan Dirkx | -4/+7 |
| 2021-04-18 | Use `NotSupported` in more places | Christiaan Dirkx | -2/+2 |
| 2021-04-18 | Update `decode_error_kind` to decode os errors to `NotSupported` | Christiaan Dirkx | -0/+1 |
| 2021-04-18 | Add and insta-stabilize `std::io::ErrorKind::NotSupported` | Christiaan Dirkx | -1/+1 |
| 2021-04-15 | Rollup merge of #84177 - ehuss:join_paths-err, r=kennytm | Dylan DPC | -1/+1 |
| 2021-04-14 | Move `std::sys_common::alloc` to `std::sys::common` | Christiaan Dirkx | -1/+1 |