commit | b57501ffd65eb64dfa5f7e0dbdda3601fa44adfa | [log] [tgz] |
---|---|---|
author | Xin Li <delphij@google.com> | Mon Apr 29 21:50:14 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Apr 29 21:50:14 2024 +0000 |
tree | 02c7430dc5e4272fb43b84401cdb6d50e9ed8a4b | |
parent | b5bc0fef4d58ca6de777aec3ada543dfe6e9da9f [diff] | |
parent | 7c0f52f0ed2e4852d3cfe96760bb838bf1040767 [diff] |
[automerger skipped] Empty merge of Android 24Q2 Release (ab/11526283) to aosp-main-future am: 7c0f52f0ed -s ours am skip reason: Merged-In I64c42941eb47a63d550e288362b4957c2db3d734 with SHA-1 e4d3376a3d is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/crossbeam-epoch/+/27145109 Change-Id: Ic9b3db8a1e141779c4a15713334c6cf93fc4163c Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This crate provides epoch-based garbage collection for building concurrent data structures.
When a thread removes an object from a concurrent data structure, other threads may be still using pointers to it at the same time, so it cannot be destroyed immediately. Epoch-based GC is an efficient mechanism for deferring destruction of shared objects until no pointers to them can exist.
Everything in this crate except the global GC can be used in no_std
environments, provided that alloc
feature is enabled.
Add this to your Cargo.toml
:
[dependencies] crossbeam-epoch = "0.9"
Crossbeam Epoch 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.61.
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.