| Age | Commit message (Expand) | Author | Lines |
| 2021-10-01 | Fix ctrl-c causing reads of stdin to return empty on Windows. | Arlo Siemsen | -9/+19 |
| 2021-09-30 | Rollup merge of #89306 - devnexen:haiku_ncpus, r=nagisa | Manish Goregaokar | -1/+10 |
| 2021-09-29 | Auto merge of #89011 - bjorn3:restructure_rt, r=dtolnay | bors | -1/+1 |
| 2021-09-28 | Clean up unneeded explicit pointer cast | David Tolnay | -1/+1 |
| 2021-09-28 | Rename `std::thread::available_onccurrency` to `std::thread::available_parall... | Yoshua Wuyts | -7/+7 |
| 2021-09-28 | Add SOLID targets | Tomoaki Kawada | -0/+3740 |
| 2021-09-27 | thread: implements available_concurrency on haiku | David Carlier | -1/+10 |
| 2021-09-23 | Auto merge of #88587 - bdbai:fix/uwpio, r=joshtriplett | bors | -4/+7 |
| 2021-09-23 | Reason safety for unsafe blocks for uwp stdin | bdbai | -0/+2 |
| 2021-09-16 | Replace a couple of asserts with rtassert! in rt code | bjorn3 | -1/+1 |
| 2021-09-14 | Add chown functions to std::os::unix::fs to change the owner and group of files | Josh Triplett | -0/+17 |
| 2021-09-10 | Use `libc::sigaction()` instead of `sys::signal()` to prevent a deadlock | Fabian Wolff | -4/+3 |
| 2021-09-09 | Fix more Windows compilation errors. | Dan Gohman | -15/+6 |
| 2021-09-09 | Fix Windows compilation errors. | Dan Gohman | -2/+2 |
| 2021-09-09 | Add a `try_clone()` function to `OwnedFd`. | Dan Gohman | -76/+5 |
| 2021-09-04 | linux/aarch64 Now() should be actually_monotonic() | Ali Saidi | -0/+1 |
| 2021-09-02 | Auto merge of #87580 - ChrisDenton:win-arg-parse-2008, r=m-ou-se | bors | -123/+200 |
| 2021-09-02 | I/O safety for WinUWP | bdbai | -4/+5 |
| 2021-09-02 | Auto merge of #83342 - Count-Count:win-console-incomplete-utf8, r=m-ou-se | bors | -14/+90 |
| 2021-09-01 | Rollup merge of #88542 - tavianator:readdir_r-errno, r=jyn514 | Mara Bos | -2/+3 |
| 2021-08-31 | Use the return value of readdir_r() instead of errno | Tavian Barnes | -2/+3 |
| 2021-08-30 | clean up `c::linger` conversion | ibraheemdev | -2/+2 |
| 2021-08-30 | add `TcpStream::set_linger` and `TcpStream::linger` | ibraheemdev | -1/+95 |
| 2021-08-27 | Handle stack_t.ss_sp type change for DragonFlyBSD | Ryan Zoeller | -14/+0 |
| 2021-08-24 | Manual Debug for Unix ExitCode ExitStatus ExitStatusError | Ian Jackson | -3/+21 |
| 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 |