stabilize atomics (now atomic)#16258
Merged
bors merged 1 commit intorust-lang:masterfrom Aug 6, 2014
Merged
Conversation
This commit stabilizes the `std::sync::atomics` module, renaming it to `std::sync::atomic` to match library precedent elsewhere, and tightening up behavior around incorrect memory ordering annotations. The vast majority of the module is now `stable`. However, the `AtomicOption` type has been deprecated, since it is essentially unused and is not truly a primitive atomic type. It will eventually be replaced by a higher-level abstraction like MVars. Due to deprecations, this is a: [breaking-change]
bors
added a commit
that referenced
this pull request
Aug 6, 2014
This commit stabilizes the `std::sync::atomics` module, renaming it to `std::sync::atomic` to match library precedent elsewhere, and tightening up behavior around incorrect memory ordering annotations. The vast majority of the module is now `stable`. However, the `AtomicOption` type has been deprecated, since it is essentially unused and is not truly a primitive atomic type. It will eventually be replaced by a higher-level abstraction like MVars. Due to deprecations, this is a: [breaking-change]
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this pull request
Jan 31, 2015
These methods were intended to be stable as of rust-lang#16258 but the tags have since been lost in various refactorings. This commit re-adds the `#[stable]` attributes to each of these functions.
Manishearth
added a commit
to Manishearth/rust
that referenced
this pull request
Feb 2, 2015
…, r=huonw These methods were intended to be stable as of rust-lang#16258 but the tags have since been lost in various refactorings. This commit re-adds the `#[stable]` attributes to each of these functions.
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this pull request
Feb 2, 2015
These methods were intended to be stable as of rust-lang#16258 but the tags have since been lost in various refactorings. This commit re-adds the `#[stable]` attributes to each of these functions.
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Jan 8, 2024
internal: Rewrite `ImportMap::search_dependencies` Second attempt, this time with a lot of perf improvements Fixes rust-lang/rust-analyzer#16080 Fixes rust-lang/rust-analyzer#16074 Fixes rust-lang/rust-analyzer#15845 The main bottleneck for flyimport completions are now import path calculation and completion item rendering.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit stabilizes the
std::sync::atomicsmodule, renaming it tostd::sync::atomicto match library precedent elsewhere, and tighteningup behavior around incorrect memory ordering annotations.
The vast majority of the module is now
stable. However, theAtomicOptiontype has been deprecated, since it is essentially unusedand is not truly a primitive atomic type. It will eventually be replaced
by a higher-level abstraction like MVars.
Due to deprecations, this is a:
[breaking-change]