| commit | 99cc8a4debcd15f0a5dd9ddf40d4a6d622ffce26 | [log] [tgz] |
|---|---|---|
| author | Xin Li <[email protected]> | Sat Feb 20 12:06:54 2021 +0000 |
| committer | Automerger Merge Worker <[email protected]> | Sat Feb 20 12:06:54 2021 +0000 |
| tree | d8a2e2d2196d95bc2fa75aa909e0a877760fdb7d | |
| parent | ca649c5238bc83fdd68a24b451246cecee3dbefc [diff] | |
| parent | 778c9f45025e8c3ad81324e24844ab75303dd34f [diff] |
[automerger skipped] Mark ab/7061308 as merged in stage. am: 2d4da630f9 -s ours am: 778c9f4502 -s ours am skip reason: Change-Id Ie2e20d9476a78e39bf64b1d18fb2795f46097181 with SHA-1 69d6002415 is in history Original change: undetermined MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I8b20d285db4203230a8bbeb05b619ace74b81eb7
Spin-based synchronization primitives.
This crate provides spin-based versions of the primitives in std::sync. Because synchronization is done through spinning, the primitives are suitable for use in no_std environments.
Before deciding to use spin, we recommend reading this superb blog post by @matklad that discusses the pros and cons of spinlocks. If you have access to std, it's likely that the primitives in std::sync will serve you better except in very specific circumstances.
Mutex, RwLock and Once equivalentsno_std environmentslock_api compatibilityRwLock guardsstd feature to enable yield to the OS scheduler in busy loopsMutex can become a ticket lockInclude the following under the [dependencies] section in your Cargo.toml file.
spin = "x.y"
When calling lock on a Mutex you will get a guard value that provides access to the data. When this guard is dropped, the lock will be unlocked.
extern crate spin; use std::{sync::Arc, thread}; fn main() { let counter = Arc::new(spin::Mutex::new(0)); let thread = thread::spawn({ let counter = counter.clone(); move || { for _ in 0..10 { *counter.lock() += 1; } } }); for _ in 0..10 { *counter.lock() += 1; } thread.join().unwrap(); assert_eq!(*counter.lock(), 20); }
The crate comes with a few feature flags that you may wish to use.
lock_api enabled support for lock_api
ticket_mutex uses a ticket lock for the implementation of Mutex
std enables support for thread yielding instead of spinning
It is often desirable to have a lock shared between threads. Wrapping the lock in an std::sync::Arc is route through which this might be achieved.
Locks provide zero-overhead access to their data when accessed through a mutable reference by using their get_mut methods.
The behaviour of these lock is similar to their namesakes in std::sync. they differ on the following:
spin is distributed under the MIT License, (See LICENSE).