Crate atomiclock_spinlock

Crate atomiclock_spinlock 

Source
Expand description

A simple spinlock.

logo

This is a simple spinlock. It is not a fair lock, and it does not provide any way to sleep the current thread if the lock is not available.

Structsยง

Guard
A guard that provides access to the data in the lock.
Lock
A simple spinlock type.