1 instantiation of SpinLock
mscorlib (1)
system\threading\threadpool.cs (1)
152
private SpinLock m_foreignLock = new
SpinLock
(false);
10 references to SpinLock
mscorlib (10)
system\threading\SpinLock.cs (9)
45
/// <see cref="
SpinLock
"/> should only be used when it's been determined that doing so will improve an
46
/// application's performance. It's also important to note that <see cref="
SpinLock
"/> is a value type,
53
/// Do not store <see cref="
SpinLock
"/> instances in readonly fields.
56
/// All members of <see cref="
SpinLock
"/> are thread-safe and may be used from multiple threads
119
/// The default constructor for <see cref="
SpinLock
"/> tracks thread ownership.
139
/// The default constructor for <see cref="
SpinLock
"/> tracks thread ownership.
147
/// <see cref="
SpinLock
"/> is a non-reentrant lock, meaning that if a thread holds the lock, it is
727
private
SpinLock
m_spinLock;
733
public SystemThreading_SpinLockDebugView(
SpinLock
spinLock)
system\threading\threadpool.cs (1)
152
private
SpinLock
m_foreignLock = new SpinLock(false);