Interlocked Class
Updated: August 2009
Provides atomic operations for variables that are shared by multiple threads.
Assembly: mscorlib (in mscorlib.dll)
The methods of this class help protect against errors that can occur when the scheduler switches contexts while a thread is updating a variable that can be accessed by other threads, or when two threads are executing concurrently on separate processors. The members of this class do not throw exceptions.
The Increment and Decrement methods increment or decrement a variable and store the resulting value in a single operation. On most computers, incrementing a variable is not an atomic operation, requiring the following steps:
Load a value from an instance variable into a register.
Increment or decrement the value.
Store the value in the instance variable.
If you do not use Increment and Decrement, a thread can be preempted after executing the first two steps. Another thread can then execute all three steps. When the first thread resumes execution, it overwrites the value in the instance variable, and the effect of the increment or decrement performed by the second thread is lost.
The Exchange method atomically exchanges the values of the specified variables. The CompareExchange method combines two operations: comparing two values and storing a third value in one of the variables, based on the outcome of the comparison. The compare and exchange operations are performed as an atomic operation.
The following code example shows a thread-safe resource locking mechanism.
Imports System Imports System.Threading Namespace InterlockedExchange_Example Class MyInterlockedExchangeExampleClass '0 for false, 1 for true. Private Shared usingResource As Integer = 0 Private Const numThreadIterations As Integer = 5 Private Const numThreads As Integer = 10 <MTAThread> _ Shared Sub Main() Dim myThread As Thread Dim rnd As New Random() Dim i As Integer For i = 0 To numThreads - 1 myThread = New Thread(AddressOf MyThreadProc) myThread.Name = String.Format("Thread{0}", i + 1) 'Wait a random amount of time before starting next thread. Thread.Sleep(rnd.Next(0, 1000)) myThread.Start() Next i End Sub 'Main Private Shared Sub MyThreadProc() Dim i As Integer For i = 0 To numThreadIterations - 1 UseResource() 'Wait 1 second before next attempt. Thread.Sleep(1000) Next i End Sub 'A simple method that denies reentrancy. Shared Function UseResource() As Boolean '0 indicates that the method is not in use. If 0 = Interlocked.Exchange(usingResource, 1) Then Console.WriteLine("{0} acquired the lock", Thread.CurrentThread.Name) 'Code to access a resource that is not thread safe would go here. 'Simulate some work Thread.Sleep(500) Console.WriteLine("{0} exiting lock", Thread.CurrentThread.Name) 'Release the lock Interlocked.Exchange(usingResource, 0) Return True Else Console.WriteLine(" {0} was denied the lock", Thread.CurrentThread.Name) Return False End If End Function End Class End Namespace
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.