Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

SpinLock.Exit Method

Definition

Namespace:
System.Threading
Assemblies:
mscorlib.dll, System.Threading.dll
Assemblies:
netstandard.dll, System.Threading.dll
Assembly:
System.Threading.dll
Assembly:
mscorlib.dll
Assembly:
netstandard.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Releases the lock.

Overloads

Name Description
Exit()

Releases the lock.

Exit(Boolean)

Releases the lock.

Exit()

Source:
SpinLock.cs
Source:
SpinLock.cs
Source:
SpinLock.cs
Source:
SpinLock.cs
Source:
SpinLock.cs

Releases the lock.

public:
 void Exit();
public void Exit();
member this.Exit : unit -> unit
Public Sub Exit ()

Exceptions

Thread ownership tracking is enabled, and the current thread is not the owner of this lock.

Remarks

The default overload of Exit provides the same behavior as if calling Exit using true as the argument.

If you call Exit without having first called Enter the internal state of the SpinLock can become corrupted.

See also

Applies to

Exit(Boolean)

Source:
SpinLock.cs
Source:
SpinLock.cs
Source:
SpinLock.cs
Source:
SpinLock.cs
Source:
SpinLock.cs

Releases the lock.

public:
 void Exit(bool useMemoryBarrier);
public void Exit(bool useMemoryBarrier);
member this.Exit : bool -> unit
Public Sub Exit (useMemoryBarrier As Boolean)

Parameters

useMemoryBarrier
Boolean

A Boolean value that indicates whether a memory fence should be issued in order to immediately publish the exit operation to other threads.

Exceptions

Thread ownership tracking is enabled, and the current thread is not the owner of this lock.

Remarks

Calling Exit with the useMemoryBarrier argument set to true will improve the fairness of the lock at the expense of some performance. The default Exit overload behaves as if specifying true for useMemoryBarrier.

If you call Exit without having first called Enter the internal state of the SpinLock can become corrupted.

See also

Applies to


Feedback

Was this page helpful?