2 writes to _mutexHandle
System.Web (2)
Compilation\CompilationLock.cs (2)
66
_mutexHandle
= new HandleRef(this, UnsafeNativeMethods.InstrumentedMutexCreate(_name));
93
_mutexHandle
= new HandleRef(this, IntPtr.Zero);
7 references to _mutexHandle
System.Web (7)
Compilation\CompilationLock.cs (7)
68
if (
_mutexHandle
.Handle == IntPtr.Zero) {
91
if (
_mutexHandle
.Handle != IntPtr.Zero) {
92
UnsafeNativeMethods.InstrumentedMutexDelete(
_mutexHandle
);
103
if (
_mutexHandle
.Handle == IntPtr.Zero)
119
if (UnsafeNativeMethods.InstrumentedMutexGetLock(
_mutexHandle
, -1) == -1) {
137
if (
_mutexHandle
.Handle == IntPtr.Zero)
147
if (UnsafeNativeMethods.InstrumentedMutexReleaseLock(
_mutexHandle
) != 0)