| commit | f167c5fc4cf8b8194bea284f8aff1d27a3e49d92 | [log] [tgz] |
|---|---|---|
| author | Jakub Kotur <qtr@google.com> | Fri Feb 05 15:31:07 2021 +0100 |
| committer | Jakub Kotur <qtr@google.com> | Fri Mar 05 17:32:37 2021 +0100 |
| tree | 9f6371be9a50826bf2dac84f8799c0ed7a61b536 | |
| parent | 1011e50743121d418b1da23a7fac0aec0c7c659c [diff] |
Enable thread_local on the device. This is requried by criterion. Bug: 155309706 Change-Id: I235a8a9c8686fc954da225cf772b8c5dd5d4c6b0
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.