Rollup merge of #64348 - arnohaase:pr_documentation_spin_loop_hint, r=alexcrichton
PR: documentation spin loop hint The documentation for 'spin loop hint' explains that yield is better if the lock holder is running on the same CPU. I suggest that 'CPU or core' would be clearer.
This commit is contained in:
commit
05d93a7d06
@ -49,28 +49,16 @@ pub unsafe fn unreachable_unchecked() -> ! {
|
|||||||
intrinsics::unreachable()
|
intrinsics::unreachable()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Signals the processor that it is entering a busy-wait spin-loop.
|
/// Emits a machine instruction hinting to the processor that it is running in busy-wait
|
||||||
|
/// spin-loop ("spin lock").
|
||||||
///
|
///
|
||||||
/// Upon receiving spin-loop signal the processor can optimize its behavior by, for example, saving
|
/// For a discussion of different locking strategies and their trade-offs, see
|
||||||
/// power or switching hyper-threads.
|
/// [`core::sync::atomic::spin_loop_hint`].
|
||||||
///
|
|
||||||
/// This function is different than [`std::thread::yield_now`] which directly yields to the
|
|
||||||
/// system's scheduler, whereas `spin_loop` only signals the processor that it is entering a
|
|
||||||
/// busy-wait spin-loop without yielding control to the system's scheduler.
|
|
||||||
///
|
|
||||||
/// Using a busy-wait spin-loop with `spin_loop` is ideally used in situations where a
|
|
||||||
/// contended lock is held by another thread executed on a different CPU and where the waiting
|
|
||||||
/// times are relatively small. Because entering busy-wait spin-loop does not trigger the system's
|
|
||||||
/// scheduler, no overhead for switching threads occurs. However, if the thread holding the
|
|
||||||
/// contended lock is running on the same CPU, the spin-loop is likely to occupy an entire CPU slice
|
|
||||||
/// before switching to the thread that holds the lock. If the contending lock is held by a thread
|
|
||||||
/// on the same CPU or if the waiting times for acquiring the lock are longer, it is often better to
|
|
||||||
/// use [`std::thread::yield_now`].
|
|
||||||
///
|
///
|
||||||
/// **Note**: On platforms that do not support receiving spin-loop hints this function does not
|
/// **Note**: On platforms that do not support receiving spin-loop hints this function does not
|
||||||
/// do anything at all.
|
/// do anything at all.
|
||||||
///
|
///
|
||||||
/// [`std::thread::yield_now`]: ../../std/thread/fn.yield_now.html
|
/// [`core::sync::atomic::spin_loop_hint`]: ../sync/atomic/fn.spin_loop_hint.html
|
||||||
#[inline]
|
#[inline]
|
||||||
#[unstable(feature = "renamed_spin_loop", issue = "55002")]
|
#[unstable(feature = "renamed_spin_loop", issue = "55002")]
|
||||||
pub fn spin_loop() {
|
pub fn spin_loop() {
|
||||||
|
@ -124,28 +124,31 @@
|
|||||||
|
|
||||||
use crate::hint::spin_loop;
|
use crate::hint::spin_loop;
|
||||||
|
|
||||||
/// Signals the processor that it is entering a busy-wait spin-loop.
|
/// Signals the processor that it is inside a busy-wait spin-loop ("spin lock").
|
||||||
///
|
///
|
||||||
/// Upon receiving spin-loop signal the processor can optimize its behavior by, for example, saving
|
/// Upon receiving spin-loop signal the processor can optimize its behavior by, for example, saving
|
||||||
/// power or switching hyper-threads.
|
/// power or switching hyper-threads.
|
||||||
///
|
///
|
||||||
/// This function is different than [`std::thread::yield_now`] which directly yields to the
|
/// This function is different from [`std::thread::yield_now`] which directly yields to the
|
||||||
/// system's scheduler, whereas `spin_loop_hint` only signals the processor that it is entering a
|
/// system's scheduler, whereas `spin_loop_hint` does not interact with the operating system.
|
||||||
/// busy-wait spin-loop without yielding control to the system's scheduler.
|
|
||||||
///
|
///
|
||||||
/// Using a busy-wait spin-loop with `spin_loop_hint` is ideally used in situations where a
|
/// Spin locks can be very efficient for short lock durations because they do not involve context
|
||||||
/// contended lock is held by another thread executed on a different CPU and where the waiting
|
/// switches or interaction with the operating system. For long lock durations they become wasteful
|
||||||
/// times are relatively small. Because entering busy-wait spin-loop does not trigger the system's
|
/// however because they use CPU cycles for the entire lock duration, and using a
|
||||||
/// scheduler, no overhead for switching threads occurs. However, if the thread holding the
|
/// [`std::sync::Mutex`] is likely the better approach. If actively spinning for a long time is
|
||||||
/// contended lock is running on the same CPU, the spin-loop is likely to occupy an entire CPU slice
|
/// required, e.g. because code polls a non-blocking API, calling [`std::thread::yield_now`]
|
||||||
/// before switching to the thread that holds the lock. If the contending lock is held by a thread
|
/// or [`std::thread::sleep`] may be the best option.
|
||||||
/// on the same CPU or if the waiting times for acquiring the lock are longer, it is often better to
|
///
|
||||||
/// use [`std::thread::yield_now`].
|
/// **Note**: Spin locks are based on the underlying assumption that another thread will release
|
||||||
|
/// the lock 'soon'. In order for this to work, that other thread must run on a different CPU or
|
||||||
|
/// core (at least potentially). Spin locks do not work efficiently on single CPU / core platforms.
|
||||||
///
|
///
|
||||||
/// **Note**: On platforms that do not support receiving spin-loop hints this function does not
|
/// **Note**: On platforms that do not support receiving spin-loop hints this function does not
|
||||||
/// do anything at all.
|
/// do anything at all.
|
||||||
///
|
///
|
||||||
/// [`std::thread::yield_now`]: ../../../std/thread/fn.yield_now.html
|
/// [`std::thread::yield_now`]: ../../../std/thread/fn.yield_now.html
|
||||||
|
/// [`std::thread::sleep`]: ../../../std/thread/fn.sleep.html
|
||||||
|
/// [`std::sync::Mutex`]: ../../../std/sync/struct.Mutex.html
|
||||||
#[inline]
|
#[inline]
|
||||||
#[stable(feature = "spin_loop_hint", since = "1.24.0")]
|
#[stable(feature = "spin_loop_hint", since = "1.24.0")]
|
||||||
pub fn spin_loop_hint() {
|
pub fn spin_loop_hint() {
|
||||||
|
Loading…
Reference in New Issue
Block a user