commit | 5a21c904afe2d8a0493f3a90a74145aff25089d1 | [log] [tgz] |
---|---|---|
author | Xin Li <[email protected]> | Mon Apr 29 11:50:33 2024 -0700 |
committer | Xin Li <[email protected]> | Mon Apr 29 11:50:33 2024 -0700 |
tree | 5a8ef7749b2793766d97ab82661b46f856ff7df4 | |
parent | ac38886e152cf4d7bbd2ba6922df98e3f4f5d646 [diff] | |
parent | 925586c02a7faf58a9629889dc22fdcffbe291e4 [diff] |
Empty merge of Android 24Q2 Release (ab/11526283) to aosp-main-future Bug: 337098550 Merged-In: I9d19c70d7f393a9ba77d4ce606e0f341ac7bb94c Change-Id: I5d96a53863d41733837bad5d9c9f7a56b107c022
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.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.