| commit | 22208f42badc589bf4907b9671887675008044dd | [log] [tgz] |
|---|---|---|
| author | Jakub Kotur <qtr@google.com> | Wed Mar 10 14:23:17 2021 +0000 |
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Mar 10 14:23:17 2021 +0000 |
| tree | 9f6371be9a50826bf2dac84f8799c0ed7a61b536 | |
| parent | 1011e50743121d418b1da23a7fac0aec0c7c659c [diff] | |
| parent | f167c5fc4cf8b8194bea284f8aff1d27a3e49d92 [diff] |
Enable thread_local on the device. am: f167c5fc4c Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/thread_local/+/1621179 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I58dd7187e9b414d1b5b44888eadf9d2d8bdd4269
This library provides the ThreadLocal type which allow a separate copy of an object to be used for each thread. This allows for per-object thread-local storage, unlike the standard library's thread_local! macro which only allows static thread-local storage.
Add this to your Cargo.toml:
[dependencies] thread_local = "1.1"
This crate's minimum supported Rust version (MSRV) is 1.36.0.
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.