Struct spin::relax::Spin[][src]

pub struct Spin;
Expand description

A strategy that rapidly spins while informing the CPU that it should power down non-essential components via core::hint::spin_loop.

Note that spinning is a ‘dumb’ strategy and most schedulers cannot correctly differentiate it from useful work, thereby misallocating even more CPU time to the spinning process. This is known as ‘priority inversion’.

If you see signs that priority inversion is occurring, consider switching to Yield or, even better, not using a spinlock at all and opting for a proper scheduler-aware lock. Remember also that different targets, operating systems, schedulers, and even the same scheduler with different workloads will exhibit different behaviour. Just because priority inversion isn’t occurring in your tests does not mean that it will not occur. Use a scheduler- aware lock if at all possible.

Trait Implementations

Perform the relaxing operation during a period of contention.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.