| Age | Commit message (Expand) | Author | Lines |
| 2021-08-24 | Remove unnecessary unsafe block in `process_unix` | Léo Lanteri Thauvin | -2/+1 |
| 2021-08-22 | Fix typos “an”→“a” and a few different ones that appeared in the sa... | Frank Steffahn | -1/+1 |
| 2021-08-19 | Factor out a common `RawFd`/`AsRawFd`/etc for Unix and WASI. | Dan Gohman | -35/+69 |
| 2021-08-19 | Use the correct `into_*` on Windows to avoid dropping a stdio handle. | Dan Gohman | -2/+2 |
| 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 |
| 2021-08-19 | I/O safety. | Dan Gohman | -377/+771 |
| 2021-08-19 | Auto merge of #88002 - hermitcore:unbox-mutex, r=dtolnay | bors | -3/+3 |
| 2021-08-18 | Rollup merge of #88012 - sunfishcode:sunfishcode/wasi-raw-fd-c-int, r=alexcri... | Guillaume Gomez | -47/+69 |
| 2021-08-13 | Change WASI's `RawFd` from `u32` to `c_int` (`i32`). | Dan Gohman | -47/+69 |
| 2021-08-13 | Don't put hermit mutexes in a box. | Martin Kröning | -1/+1 |
| 2021-08-13 | Don't put hermit condvars in a box. | Martin Kröning | -1/+1 |
| 2021-08-13 | Don't put hermit rwlocks in a box. | Martin Kröning | -1/+1 |
| 2021-08-12 | Auto merge of #87963 - GuillaumeGomez:rollup-e54sbez, r=GuillaumeGomez | bors | -5/+24 |
| 2021-08-10 | STD support for the ESP-IDF framework | ivmarkov | -42/+336 |
| 2021-08-08 | Implement modern Windows arg parsing | Chris Denton | -106/+153 |
| 2021-08-08 | Update Windows arg parsing tests | Chris Denton | -17/+47 |
| 2021-08-08 | Fix Windows Command::env("PATH") | Chris Denton | -5/+24 |
| 2021-08-07 | Auto merge of #87810 - devnexen:haiku_os_simpl, r=Mark-Simulacrum | bors | -33/+8 |
| 2021-08-06 | current_exe haiku code path simplification all of these part of libc | David Carlier | -33/+8 |
| 2021-08-06 | Rollup merge of #87561 - devnexen:haiku_thread_build_fix, r=yaahc | Yuki Okushi | -2/+9 |
| 2021-08-02 | os current_exe using same approach as linux to get always the full absolute path | David Carlier | -13/+17 |
| 2021-08-02 | Rollup merge of #86509 - CDirkx:os_str, r=m-ou-se | Yuki Okushi | -10/+276 |
| 2021-08-02 | Rollup merge of #86183 - inquisitivecrystal:env-nul, r=m-ou-se | Yuki Okushi | -35/+19 |
| 2021-08-01 | Auto merge of #87622 - pietroalbini:bump-bootstrap, r=Mark-Simulacrum | bors | -5/+0 |
| 2021-08-01 | Auto merge of #81825 - voidc:pidfd, r=joshtriplett | bors | -3/+174 |
| 2021-08-01 | bump bootstrap compiler to 1.55 | Pietro Albini | -5/+0 |
| 2021-07-30 | Rollup merge of #87594 - devnexen:netbsd_fs_getfiledescriptor_path, r=joshtri... | Yuki Okushi | -2/+7 |
| 2021-07-29 | fs File get_path procfs usage for netbsd same as linux. | David Carlier | -2/+7 |
| 2021-07-29 | Fix may not to appropriate might not or must not | Ali Malik | -2/+2 |
| 2021-07-28 | thread set_name haiku implementation. | David Carlier | -2/+9 |
| 2021-07-28 | stack overflow handler specific openbsd fix. | David Carlier | -8/+9 |
| 2021-07-28 | Rollup merge of #87507 - jethrogb:jb/sgx-unmoveable-mutex, r=dtolnay | Yuki Okushi | -1/+3 |
| 2021-07-27 | Rollup merge of #87446 - devnexen:macos_update, r=dtolnay | Yuki Okushi | -5/+2 |
| 2021-07-27 | Rollup merge of #87354 - Wind-River:2021_master, r=kennytm | Yuki Okushi | -1/+3 |
| 2021-07-27 | Add warning to SGX mutex implementation | Jethro Beekman | -0/+2 |
| 2021-07-27 | Revert "SGX mutex is movable" | Jethro Beekman | -1/+1 |
| 2021-07-25 | macos current_exe using directly libc instead. | David CARLIER | -5/+2 |
| 2021-07-24 | Auto merge of #84589 - In-line:zircon-thread-name, r=JohnTitor | bors | -4/+30 |
| 2021-07-21 | VxWorks does provide sigemptyset and sigaddset | Nicholas Baron | -1/+1 |
| 2021-07-21 | Disable glibc tests on vxworks | Nicholas Baron | -0/+2 |
| 2021-07-21 | Add tracking issue and link to man-page | Dominik Stolz | -1/+1 |
| 2021-07-21 | Add PidFd type and seal traits | Dominik Stolz | -88/+155 |
| 2021-07-21 | Typo fix | Josh Triplett | -1/+1 |
| 2021-07-21 | Add Linux-specific pidfd process extensions | Aaron Hill | -6/+110 |
| 2021-07-19 | Add comments explaining the unix command-line argument support. | Dan Gohman | -2/+16 |
| 2021-07-17 | x.py fmt | Dan Gohman | -5/+1 |
| 2021-07-17 | Remove an unnecessary `Mutex` around argument initialization. | Dan Gohman | -8/+7 |
| 2021-07-17 | Remove args cleanup code. | Dan Gohman | -14/+0 |
| 2021-07-10 | Change `weak!` and `linkat!` to macros 2.0 | Aris Merchant | -4/+38 |