SpinLock Structure
Provides a mutual exclusion lock primitive where a thread trying to acquire the lock waits in a loop repeatedly checking until the lock becomes available.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() | SpinLock(Boolean) | Initializes a new instance of the SpinLock structure with the option to track thread IDs to improve debugging. |
| Name | Description | |
|---|---|---|
![]() | IsHeld | Gets whether the lock is currently held by any thread. |
![]() | IsHeldByCurrentThread | Gets whether the lock is held by the current thread. |
![]() | IsThreadOwnerTrackingEnabled | Gets whether thread ownership tracking is enabled for this instance. |
| Name | Description | |
|---|---|---|
![]() | Enter(Boolean%) | Acquires the lock in a reliable manner, such that even if an exception occurs within the method call, lockTaken can be examined reliably to determine whether the lock was acquired. |
![]() | Equals(Object^) | Indicates whether this instance and a specified object are equal.(Inherited from ValueType.) |
![]() | Exit() | Releases the lock. |
![]() | Exit(Boolean) | Releases the lock. |
![]() | GetHashCode() | Returns the hash code for this instance.(Inherited from ValueType.) |
![]() | GetType() | |
![]() | ToString() | Returns the fully qualified type name of this instance.(Inherited from ValueType.) |
![]() | TryEnter(Boolean%) | Attempts to acquire the lock in a reliable manner, such that even if an exception occurs within the method call, lockTaken can be examined reliably to determine whether the lock was acquired. |
![]() | TryEnter(Int32, Boolean%) | Attempts to acquire the lock in a reliable manner, such that even if an exception occurs within the method call, lockTaken can be examined reliably to determine whether the lock was acquired. |
![]() | TryEnter(TimeSpan, Boolean%) | Attempts to acquire the lock in a reliable manner, such that even if an exception occurs within the method call, lockTaken can be examined reliably to determine whether the lock was acquired. |
For an example of how to use a Spin Lock, see How to: Use SpinLock for Low-Level Synchronization.
Spin locks can be used for leaf-level locks where the object allocation implied by using a Monitor, in size or due to garbage collection pressure, is overly expensive. A spin lock can be useful in to avoid blocking; however, if you expect a significant amount of blocking, you should probably not use spin locks due to excessive spinning. Spinning can be beneficial when locks are fine-grained and large in number (for example, a lock per node in a linked list) and also when lock hold-times are always extremely short. In general, while holding a spin lock, one should avoid any of these actions:
blocking,
calling anything that itself may block,
holding more than one spin lock at once,
making dynamically dispatched calls (interface and virtuals),
making statically dispatched calls into any code one doesn't own, or
allocating memory.
SpinLock should only be used after you have been determined that doing so will improve an application's performance. It is also important to note that SpinLock is a value type, for performance reasons. For this reason, you must be very careful not to accidentally copy a SpinLock instance, as the two instances (the original and the copy) would then be completely independent of one another, which would likely lead to erroneous behavior of the application. If a SpinLock instance must be passed around, it should be passed by reference rather than by value.
Do not store SpinLock instances in readonly fields.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
All members of SpinLock are thread-safe and may be used from multiple threads concurrently.

