-
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
Stabilize hint::spin_loop #76097
Stabilize hint::spin_loop #76097
Conversation
dcb273e
to
470f3f2
Compare
Needs |
470f3f2
to
f3155d1
Compare
Is it that it should be |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it that it should be #![cfg_attr(not(bootstrap), feature(renamed_spin_loop))]?
I think we can actually just remove the renamed_spin_loop
altogether, since that's what we're stabilizing. At least that seems to work for me locally 🙂
Oh, I forgot that we could remove it. |
f3155d1
to
f7ee5da
Compare
@bors try |
⌛ Trying commit f7ee5dad97d39755e8549c2eeb9121b0c2101477 with merge e76d95063a57c76c55da09725e42150bdfde978b... |
☀️ Try build successful - checks-actions, checks-azure |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @pickfire!
I've just left a few little suggestions, but I think this is looking good.
@bors try |
⌛ Trying commit 3d6b411233283c879dc1988ab031905c36e35cbb with merge b828e07c76cedb02561ae676718d3109080009c9... |
☀️ Try build successful - checks-actions, checks-azure |
Just circling back around to this now. It looks like we've got a happy build now! @pickfire would you like to update the example? After that I think this will be good to go, but we might want to bump the stabilization to |
@rustbot modify labels to +S-waiting-on-author, -S-waiting-on-review |
I think you mean 1.49 -- 1.48 will be promoted to beta on Tuesday. |
@KodrAus Example is updated. Thanks for the ping. |
288033a
to
6b4a184
Compare
@KodrAus Sorry, I accidentally rebased the wrong commit and your commits were gone, I felt lazy to reflog it so I just added the co-authored to the commit message instead. |
6b4a184
to
badff9c
Compare
@bors r=KodrAus |
📌 Commit e8b5be5 has been approved by |
…rAus Stabilize hint::spin_loop Partially fix rust-lang#55002, deprecate in another release r? `@KodrAus`
…rAus Stabilize hint::spin_loop Partially fix rust-lang#55002, deprecate in another release r? ``@KodrAus``
…rAus Stabilize hint::spin_loop Partially fix rust-lang#55002, deprecate in another release r? ```@KodrAus```
…rAus Stabilize hint::spin_loop Partially fix rust-lang#55002, deprecate in another release r? ````@KodrAus````
…rAus Stabilize hint::spin_loop Partially fix rust-lang#55002, deprecate in another release r? `````@KodrAus`````
Rollup of 19 pull requests Successful merges: - rust-lang#76097 (Stabilize hint::spin_loop) - rust-lang#76227 (Stabilize `Poll::is_ready` and `is_pending` as const) - rust-lang#78065 (make concurrency helper more pleasant to read) - rust-lang#78570 (Remove FIXME comment in print_type_sizes ui test suite) - rust-lang#78572 (Use SOCK_CLOEXEC and accept4() on more platforms.) - rust-lang#78658 (Add a tool to run `x.py` from any subdirectory) - rust-lang#78706 (Fix run-make tests running when LLVM is disabled) - rust-lang#78728 (Constantify `UnsafeCell::into_inner` and related) - rust-lang#78775 (Bump Rustfmt and RLS) - rust-lang#78788 (Correct unsigned equivalent of isize to be usize) - rust-lang#78811 (Make some std::io functions `const`) - rust-lang#78828 (use single char patterns for split() (clippy::single_char_pattern)) - rust-lang#78841 (Small cleanup in `TypeFoldable` derive macro) - rust-lang#78842 (Honor the rustfmt setting in config.toml) - rust-lang#78843 (Less verbose debug logging from inlining integrator) - rust-lang#78852 (Convert a bunch of intra-doc links) - rust-lang#78860 (rustc_resolve: Use `#![feature(format_args_capture)]`) - rust-lang#78861 (typo and formatting) - rust-lang#78865 (Don't fire `CONST_ITEM_MUTATION` lint when borrowing a deref) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Partially fix #55002, deprecate in another release
r? @KodrAus