4 references to NonReentrantLock
Microsoft.CodeAnalysis.CodeStyle (4)
AsyncLazy`1.cs (1)
66
private static readonly NonReentrantLock s_gate =
new
(useThisInstanceForSynchronization: true);
CancellableLazy`1.cs (1)
19
_gate = new
NonReentrantLock
();
EventMap.cs (1)
15
private readonly NonReentrantLock _guard =
new
();
NonReentrantLock.cs (1)
66
public static readonly Func<NonReentrantLock> Factory = () => new
NonReentrantLock
(useThisInstanceForSynchronization: true);