-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 10 pull requests #98367
Rollup of 10 pull requests #98367
Commits on May 29, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f020fc0 - Browse repository at this point
Copy the full SHA f020fc0View commit details
Commits on Jun 18, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 8b7299d - Browse repository at this point
Copy the full SHA 8b7299dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 44364dc - Browse repository at this point
Copy the full SHA 44364dcView commit details
Commits on Jun 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 7cefa8f - Browse repository at this point
Copy the full SHA 7cefa8fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b6e6e3 - Browse repository at this point
Copy the full SHA 0b6e6e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 391f800 - Browse repository at this point
Copy the full SHA 391f800View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf1238e - Browse repository at this point
Copy the full SHA cf1238eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 08650fb - Browse repository at this point
Copy the full SHA 08650fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0157593 - Browse repository at this point
Copy the full SHA 0157593View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa1656e - Browse repository at this point
Copy the full SHA fa1656eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 09d937e - Browse repository at this point
Copy the full SHA 09d937eView commit details -
Configuration menu - View commit details
-
Copy full SHA for cb20e25 - Browse repository at this point
Copy the full SHA cb20e25View commit details -
Configuration menu - View commit details
-
Copy full SHA for 43c6f9c - Browse repository at this point
Copy the full SHA 43c6f9cView commit details
Commits on Jun 20, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 048a801 - Browse repository at this point
Copy the full SHA 048a801View commit details
Commits on Jun 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for ac38258 - Browse repository at this point
Copy the full SHA ac38258View commit details -
update cpu-usage-over-time-plot script
fix tidy checks and correct cpu-usage-over-time-plot script
Configuration menu - View commit details
-
Copy full SHA for 8eb7ddf - Browse repository at this point
Copy the full SHA 8eb7ddfView commit details -
Configuration menu - View commit details
-
Copy full SHA for c9340ec - Browse repository at this point
Copy the full SHA c9340ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ca8b69 - Browse repository at this point
Copy the full SHA 1ca8b69View commit details -
Co-authored-by: Josh Triplett <josh@joshtriplett.org>
Configuration menu - View commit details
-
Copy full SHA for 4768bfc - Browse repository at this point
Copy the full SHA 4768bfcView commit details
Commits on Jun 22, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 52409c4 - Browse repository at this point
Copy the full SHA 52409c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for e53b2ba - Browse repository at this point
Copy the full SHA e53b2baView commit details -
Rollup merge of rust-lang#95446 - notseanray:master, r=Mark-Simulacrum
update CPU usage script I've made slight changes to the CPU usage plot script with updated links from the [ci2 aws instance](https://rust-lang-ci2.s3.amazonaws.com/).
Configuration menu - View commit details
-
Copy full SHA for ecda292 - Browse repository at this point
Copy the full SHA ecda292View commit details -
Rollup merge of rust-lang#96768 - m-ou-se:futex-fuchsia, r=tmandry
Use futex based thread parker on Fuchsia.
Configuration menu - View commit details
-
Copy full SHA for 4415af5 - Browse repository at this point
Copy the full SHA 4415af5View commit details -
Rollup merge of rust-lang#96820 - r-raymond:master, r=cuviper
Make RwLockReadGuard covariant Hi, first time contributor here, if anything is not as expected, please let me know. `RwLockReadGoard`'s type constructor is invariant. Since it behaves like a smart pointer to an immutable reference, there is no reason that it should not be covariant. Take e.g. ``` fn test_read_guard_covariance() { fn do_stuff<'a>(_: RwLockReadGuard<'_, &'a i32>, _: &'a i32) {} let j: i32 = 5; let lock = RwLock::new(&j); { let i = 6; do_stuff(lock.read().unwrap(), &i); } drop(lock); } ``` where the compiler complains that &i doesn't live long enough. If `RwLockReadGuard` is covariant, then the above code is accepted because the lifetime can be shorter than `'a`. In order for `RwLockReadGuard` to be covariant, it can't contain a full reference to the `RwLock`, which can never be covariant (because it exposes a mutable reference to the underlying data structure). By reducing the data structure to the required pieces of `RwLock`, the rest falls in place. If there is a better way to do a test that tests successful compilation, please let me know. Fixes rust-lang#80392
Configuration menu - View commit details
-
Copy full SHA for c7aa270 - Browse repository at this point
Copy the full SHA c7aa270View commit details -
Rollup merge of rust-lang#97454 - Mark-Simulacrum:relnotes, r=Mark-Si…
…mulacrum Add release notes for 1.62 cc `@rust-lang/release` r? `@pietroalbini`
Configuration menu - View commit details
-
Copy full SHA for ffd6b0f - Browse repository at this point
Copy the full SHA ffd6b0fView commit details -
Rollup merge of rust-lang#97516 - RalfJung:atomics, r=joshtriplett
clarify how Rust atomics correspond to C++ atomics `@cbeuw` noted in rust-lang/miri#1963 that the correspondence between C++ atomics and Rust atomics is not quite as obvious as one might think, since in Rust I can use `get_mut` to treat previously non-atomic data as atomic. However, I think using C++20 `atomic_ref`, we can establish a suitable relation between the two -- or do you see problems with that `@cbeuw?` (I recall you said there was some issue, but it was deep inside that PR and Github makes it impossible to find...) Cc `@thomcc;` not sure whom else to ping for atomic memory model things.
Configuration menu - View commit details
-
Copy full SHA for 39520e4 - Browse repository at this point
Copy the full SHA 39520e4View commit details -
Rollup merge of rust-lang#97818 - compiler-errors:rpit-error-spanned,…
… r=oli-obk Point at return expression for RPIT-related error Certainly this needs some diagnostic refining, but I wanted to show that it was possible first and foremost. Not sure if this is the right approach. Open to feedback. Fixes rust-lang#80583
Configuration menu - View commit details
-
Copy full SHA for 3543cd7 - Browse repository at this point
Copy the full SHA 3543cd7View commit details -
Rollup merge of rust-lang#97895 - nbdd0121:unlikely, r=estebank
Simplify `likely!` and `unlikely!` macro The corresponding intrinsics have long been safe-to-call, so the unsafe block is no longer needed.
Configuration menu - View commit details
-
Copy full SHA for a07def6 - Browse repository at this point
Copy the full SHA a07def6View commit details -
Rollup merge of rust-lang#98005 - compiler-errors:impossible-bounds, …
…r=Mark-Simulacrum Add some tests for impossible bounds Adds test for rust-lang#93008 Adds test for rust-lang#94680 Closes rust-lang#94999 Closes rust-lang#95640
Configuration menu - View commit details
-
Copy full SHA for 5b0093a - Browse repository at this point
Copy the full SHA 5b0093aView commit details -
Rollup merge of rust-lang#98356 - lucasthormann:patch-1, r=Mark-Simul…
…acrum Add missing period
Configuration menu - View commit details
-
Copy full SHA for 824443d - Browse repository at this point
Copy the full SHA 824443dView commit details -
Rollup merge of rust-lang#98363 - RalfJung:btree-test-ref-alloc, r=th…
…omcc remove use of &Alloc in btree tests I missed these in rust-lang#98233. r? `@thomcc`
Configuration menu - View commit details
-
Copy full SHA for ae8c200 - Browse repository at this point
Copy the full SHA ae8c200View commit details