Lines Matching refs:spin
1 # spin-rs
3 [![Crates.io version](https://img.shields.io/crates/v/spin.svg)](https://crates.io/crates/spin)
4 [![docs.rs](https://docs.rs/spin/badge.svg)](https://docs.rs/spin/)
5 [![Build Status](https://travis-ci.org/mvdnes/spin-rs.svg)](https://travis-ci.org/mvdnes/spin-rs)
9 This crate provides [spin-based](https://en.wikipedia.org/wiki/Spinlock)
13 Before deciding to use `spin`, we recommend reading
35 spin = "x.y"
44 extern crate spin;
48 let counter = Arc::new(spin::Mutex::new(0));
92 accessed. Instead, they will 'spin' in a busy loop until the lock becomes available.
96 `spin` is distributed under the MIT License, (See `LICENSE`).