| Age | Commit message (Expand) | Author | Lines |
| 2022-11-06 | std: remove lock wrappers in `sys_common` | joboet | -26/+21 |
| 2022-11-05 | Rollup merge of #103995 - SUPERCILEX:typos, r=Dylan-DPC | Dylan DPC | -5/+6 |
| 2022-11-04 | Small round of typo fixes | Alex Saveau | -5/+6 |
| 2022-10-27 | Use stdio in UWP apps | Chris Denton | -120/+28 |
| 2022-10-21 | Reduce false positives in msys2 detection | Chris Denton | -2/+12 |
| 2022-10-15 | Auto merge of #100579 - joboet:sync_mutex_everywhere, r=thomcc | bors | -3/+3 |
| 2022-10-15 | Use Align8 to avoid misalignment if the allocator or Vec doesn't align alloca... | Josh Triplett | -7/+7 |
| 2022-10-15 | Rewrite FILE_NAME_INFO handling to avoid enlarging slice reference | Josh Triplett | -4/+4 |
| 2022-10-15 | Make is_terminal fail fast if a process has no console at all | Josh Triplett | -1/+9 |
| 2022-10-15 | Add `IsTerminal` trait to determine if a descriptor or handle is a terminal | Josh Triplett | -0/+67 |
| 2022-10-13 | std: use `sync::Mutex` for internal statics | joboet | -3/+3 |
| 2022-10-13 | Auto merge of #102655 - joboet:windows_tls_opt, r=ChrisDenton | bors | -73/+193 |
| 2022-10-08 | std: optimize TLS on Windows | joboet | -73/+193 |
| 2022-10-01 | `SetFileTime` doesn't allow setting the file time to `0xFFFF_FFFF_FFFF_FFFF` | beetrees | -0/+8 |
| 2022-09-24 | Rollup merge of #102044 - ChrisDenton:BCrypt-system-rand, r=thomcc | Matthias Krüger | -53/+29 |
| 2022-09-20 | Auto merge of #100581 - joboet:sync_rwlock_everywhere, r=thomcc | bors | -1/+1 |
| 2022-09-20 | Remove `RtlGenRandom` (take two) | Chris Denton | -53/+29 |
| 2022-09-19 | std: use `sync::RwLock` for internal statics | joboet | -1/+1 |
| 2022-09-10 | Explicitly link kernel32.lib from alloc | Chris Denton | -0/+1 |
| 2022-09-09 | Rollup merge of #101366 - ChrisDenton:unc-forward-slash, r=m-ou-se | Dylan DPC | -18/+20 |
| 2022-09-07 | Auto merge of #101476 - ChrisDenton:BCryptRandom-fix, r=thomcc | bors | -20/+88 |
| 2022-09-07 | Don't break windows/rand for miri | Chris Denton | -0/+12 |
| 2022-09-06 | Open a BCrypt algorithm handle | Chris Denton | -20/+76 |
| 2022-09-06 | Fix compile errors for uwp-windows-msvc targets | Chris Denton | -1/+1 |
| 2022-09-04 | Auto merge of #100576 - joboet:movable_const_remutex, r=Mark-Simulacrum | bors | -2/+0 |
| 2022-09-03 | std: make `ReentrantMutex` movable and `const`; simplify `Stdout` initialization | joboet | -2/+0 |
| 2022-09-03 | Restore old behaviour on broken UNC paths | Chris Denton | -18/+20 |
| 2022-09-03 | Rollup merge of #101325 - ChrisDenton:BCRYPT_RNG_ALG_HANDLE, r=thomcc | Dylan DPC | -5/+38 |
| 2022-09-02 | Auto merge of #97802 - Enselic:add-no_ignore_sigkill-feature, r=joshtriplett | bors | -1/+1 |
| 2022-09-02 | Rollup merge of #101260 - ChrisDenton:attribute-tag, r=thomcc | Matthias Krüger | -8/+24 |
| 2022-09-02 | Use `BCRYPT_RNG_ALG_HANDLE` by default | Chris Denton | -5/+38 |
| 2022-09-01 | Auto merge of #100707 - dzvon:fix-typo, r=davidtwco | bors | -2/+2 |
| 2022-09-01 | Use `FILE_ATTRIBUTE_TAG_INFO` to get reparse tag | Chris Denton | -8/+24 |
| 2022-08-31 | Avoid needless buffer zeroing in `std::sys::windows::fs` | Thom Chiovoloni | -14/+24 |
| 2022-08-31 | Correct typo | Dezhi Wu | -1/+1 |
| 2022-08-31 | Fix a bunch of typo | Dezhi Wu | -2/+2 |
| 2022-08-31 | Rollup merge of #101171 - thomcc:fix-winfs-ub, r=ChrisDenton | Matthias Krüger | -28/+55 |
| 2022-08-31 | Rollup merge of #100984 - ChrisDenton:reinstate-init, r=Mark-Simulacrum | Matthias Krüger | -33/+52 |
| 2022-08-30 | Avoid `MaybeUninit::uninit_array()` | Thom Chiovoloni | -4/+4 |
| 2022-08-30 | Fix UB in Windows `DirBuffIter` (provenance and alignment) | Thom Chiovoloni | -7/+10 |
| 2022-08-30 | Avoid zeroing large stack buffers in stdio on Windows | Thom Chiovoloni | -14/+27 |
| 2022-08-30 | Replace `AlignedAs` with a more specific `Align8` type | Thom Chiovoloni | -52/+20 |
| 2022-08-30 | Fix UWP and use `AlignedReparseBuf` in `symlink_junction_inner` | Thom Chiovoloni | -5/+6 |
| 2022-08-29 | Fix some possible UB in std::sys::windows | Thom Chiovoloni | -16/+71 |
| 2022-08-28 | Support `#[unix_sigpipe = "inherit|sig_dfl|sig_ign"]` on `fn main()` | Martin Nordholts | -1/+1 |
| 2022-08-28 | Rollup merge of #97015 - nrc:read-buf-cursor, r=Mark-Simulacrum | Matthias Krüger | -10/+8 |
| 2022-08-28 | Reinstate preloading of some dll imports | Chris Denton | -33/+52 |
| 2022-08-24 | Auto merge of #96869 - sunfishcode:main, r=joshtriplett | bors | -3/+1 |
| 2022-08-21 | Rollup merge of #100822 - WaffleLapkin:no_offset_question_mark, r=scottmcm | Matthias Krüger | -8/+8 |
| 2022-08-21 | Replace most uses of `pointer::offset` with `add` and `sub` | Maybe Waffle | -8/+8 |