7 references to CompareExchange
System.Private.CoreLib (7)
System\Threading\Interlocked.cs (1)
37return CompareExchange(location1, value, comparand); // Must expand intrinsic
System\Threading\ObjectHeader.cs (6)
155if (Interlocked.CompareExchange(pHeader, newBits, oldBits) == oldBits) 250while (Interlocked.CompareExchange(pHeader, newBits, oldBits) != oldBits); 315if (Interlocked.CompareExchange(pHeader, oldBits | currentThreadID, oldBits) == oldBits) 372if (Interlocked.CompareExchange(pHeader, newBits, oldBits) == oldBits) 401if (Interlocked.CompareExchange(pHeader, newBits, oldBits) == oldBits) 461if (Interlocked.CompareExchange(pHeader, newBits, oldBits) == oldBits)