| Age | Commit message (Expand) | Author | Lines |
| 2021-05-07 | Rollup merge of #85030 - jethrogb:jb/sgx-rearrange-files, r=nagisa | Dylan DPC | -6/+7 |
| 2021-05-07 | Rollup merge of #85029 - jethrogb:jb/sgx-movable-mutex, r=m-ou-se | Dylan DPC | -1/+1 |
| 2021-05-07 | Rollup merge of #84655 - CDirkx:wasm, r=m-ou-se | Dylan DPC | -65/+14 |
| 2021-05-07 | Rearrange SGX split module files | Jethro Beekman | -6/+7 |
| 2021-05-07 | SGX mutex is movable | Jethro Beekman | -1/+1 |
| 2021-05-07 | Rollup merge of #84409 - mzohreva:mz/tls-dtors-before-join, r=jethrogb | Dylan DPC | -10/+65 |
| 2021-05-06 | Rollup merge of #84712 - joshtriplett:simplify-chdir, r=yaahc | Dylan DPC | -5/+3 |
| 2021-05-03 | Allow documenting on `hermit` | Christiaan Dirkx | -1/+0 |
| 2021-05-03 | Move `std::sys::sgx::ext` to `std::os::fortanix_sgx` | Christiaan Dirkx | -267/+0 |
| 2021-05-03 | Move `std::sys::wasi::ext` to `std::os::wasi` | Christiaan Dirkx | -813/+0 |
| 2021-05-03 | Move `std::sys::unix::ext` to `std::os::unix` | Christiaan Dirkx | -5390/+0 |
| 2021-05-03 | Move `std::sys::windows::ext` to `std::os::windows` | Christiaan Dirkx | -1155/+3 |
| 2021-05-03 | Move `std::sys::hermit::ext` to `std::os::hermit` | Christiaan Dirkx | -53/+0 |
| 2021-05-03 | Cleanup `std::os` | Christiaan Dirkx | -35/+23 |
| 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/+5 |
| 2021-05-01 | Auto merge of #84658 - Amanieu:reserved_regs, r=petrochenkov | bors | -2/+8 |
| 2021-05-01 | Reserve x18 on AArch64 and un-reserve x16 | Amanieu d'Antras | -4/+4 |
| 2021-04-30 | Avoid using rbx in SGX inline assembly since it is reserved | Amanieu d'Antras | -2/+8 |
| 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 | -118/+34 |
| 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 | Remove `DropGuard` in `sys::windows::process` and use `StaticMutex` instead | Christiaan Dirkx | -24/+4 |
| 2021-04-28 | Fix missing import in `unsupported::args` | Christiaan Dirkx | -0/+1 |
| 2021-04-28 | Reuse `unsupported::args` on `wasm` | Christiaan Dirkx | -42/+1 |
| 2021-04-28 | Move `wasm` atomics code to `wasm/atomics` | Christiaan Dirkx | -5/+5 |
| 2021-04-28 | Rework `wasm::thread` to `thread_atomics` | Christiaan Dirkx | -19/+8 |
| 2021-04-28 | Reuse `unix::cmath` | Christiaan Dirkx | -118/+34 |
| 2021-04-27 | Rollup merge of #84521 - CDirkx:hermit-dedup, r=Mark-Simulacrum | Dylan DPC | -92/+3 |
| 2021-04-25 | Rollup merge of #84541 - KaiJewson:inline-raw, r=m-ou-se | Dylan DPC | -0/+76 |
| 2021-04-25 | Inline most raw socket, fd and handle conversions | KaiJewson | -0/+76 |
| 2021-04-25 | Auto merge of #84115 - CDirkx:rt, r=m-ou-se | bors | -89/+81 |
| 2021-04-24 | Reuse `unix::path` and `unsupported::{io, thread_local_key}` on `hermit` | Christiaan Dirkx | -92/+3 |
| 2021-04-23 | Explicitly implement `!Send` and `!Sync` for `sys::{Args, Env}` | Christiaan Dirkx | -27/+30 |
| 2021-04-22 | Rollup merge of #84413 - CDirkx:args_inner_debug, r=m-ou-se | Dylan DPC | -30/+25 |
| 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/+10 |
| 2021-04-22 | Apply suggestions from review | Christiaan Dirkx | -7/+10 |
| 2021-04-22 | Move most init to `sys::init` | Christiaan Dirkx | -51/+30 |
| 2021-04-22 | Remove `sys::args::Args::inner_debug` and use `Debug` instead | Christiaan Dirkx | -30/+25 |
| 2021-04-22 | Move all cleanup to `sys::cleanup` | Christiaan Dirkx | -22/+7 |
| 2021-04-22 | Rework `at_exit` to `cleanup` | Christiaan Dirkx | -21/+36 |
| 2021-04-21 | Ensure TLS destructors run before thread joins in SGX | Mohsen Zohrevandi | -10/+65 |
| 2021-04-21 | Rollup merge of #84212 - CDirkx:void, r=m-ou-se | Mara Bos | -252/+238 |
| 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-20 | Change uses of never type | Christiaan Dirkx | -196/+198 |
| 2021-04-20 | Replace `Void` with never type | Christiaan Dirkx | -60/+44 |