commit | d261c5600a01ee90a665abc390dc848b9caec173 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Thu Feb 01 23:25:45 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Feb 01 23:25:45 2024 +0000 |
tree | 98a23db94871d645a7908a26f1288d5255907dc9 | |
parent | 4ea1f2a7f5031bfc8973977fb7a4b027e12c36d5 [diff] | |
parent | f7dcdf2bdae46ce7393370aaab758f7c98a3ba6c [diff] |
Upgrade crossbeam-utils to 0.8.19 am: 6e8d2d5a50 am: f7dcdf2bda Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/crossbeam-utils/+/2943531 Change-Id: I84d27d286cc1f11f036a385a50767d7aeb75fa32 Signed-off-by: Automerger Merge Worker <[email protected]>
This crate provides miscellaneous tools for concurrent programming:
AtomicCell
, a thread-safe mutable memory location.(no_std)AtomicConsume
, for reading from primitive atomic types with “consume” ordering.(no_std)Parker
, a thread parking primitive.ShardedLock
, a sharded reader-writer lock with fast concurrent reads.WaitGroup
, for synchronizing the beginning or end of some computation.Backoff
, for exponential backoff in spin loops.(no_std)CachePadded
, for padding and aligning a value to the length of a cache line.(no_std)scope
, for spawning threads that borrow local variables from the stack.Features marked with (no_std) can be used in no_std
environments.
Add this to your Cargo.toml
:
[dependencies] crossbeam-utils = "0.8"
Crossbeam Utils supports stable Rust releases going back at least six months, and every time the minimum supported Rust version is increased, a new minor version is released. Currently, the minimum supported Rust version is 1.60.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.