commit | 8496027ef7615f01a3e18ae7f4019da1c70f7d52 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Mar 10 04:19:50 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Mar 10 04:19:50 2023 +0000 |
tree | 5dde593726f7dcc1fcedcc1ed4b1d54d3743b0bb | |
parent | f9d112cc2fe485fcf314718cb7fd4ec64db5133d [diff] | |
parent | 43d24f42d7b34bd9d3beabc04e979aae7667ce4b [diff] |
Snap for 9719949 from 9d0b2dbbb945eb09f41e154653bb57eaeef6f884 to udc-release am: 43d24f42d7 Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/crossbeam-queue/+/21946506 Change-Id: Ie602a821495b4d921ff986910c15d98f75f26bed Signed-off-by: Automerger Merge Worker <[email protected]>
This crate provides concurrent queues that can be shared among threads:
ArrayQueue
, a bounded MPMC queue that allocates a fixed-capacity buffer on construction.SegQueue
, an unbounded MPMC queue that allocates small buffers, segments, on demand.Everything in this crate can be used in no_std
environments, provided that alloc
feature is enabled.
Add this to your Cargo.toml
:
[dependencies] crossbeam-queue = "0.3"
Crossbeam Queue 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.38.
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.