| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-12-29 | std: unify id-based thread parking implementations | joboet | -125/+0 | |
| 2022-04-25 | std: directly use pthread in UNIX parker implementation | joboet | -9/+15 | |
| Mutex and Condvar are being replaced by more efficient implementations, which need thread parking themselves (see #93740). Therefore use the pthread synchronization primitives directly. Also, avoid allocating because the Parker struct is being placed in an Arc anyways. | ||||
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -1/+1 | |
| This updates the standard library's documentation to use the new syntax. The documentation is worthwhile to update as it should be more idiomatic (particularly for features like this, which are nice for users to get acquainted with). The general codebase is likely more hassle than benefit to update: it'll hurt git blame, and generally updates can be done by folks updating the code if (and when) that makes things more readable with the new format. A few places in the compiler and library code are updated (mostly just due to already having been done when this commit was first authored). | ||||
| 2021-12-14 | Fix a bunch of typos | Frank Steffahn | -3/+3 | |
| 2020-09-27 | Move thread parker to sys_common. | Mara Bos | -0/+119 | |
