2 writes to m_waitHandle
mscorlib (2)
system\threading\SemaphoreSlim.cs (2)
145
m_waitHandle
= new ManualResetEvent(m_currentCount != 0);
872
m_waitHandle
= null;
12 references to m_waitHandle
mscorlib (12)
system\threading\SemaphoreSlim.cs (12)
135
if (
m_waitHandle
!= null)
136
return
m_waitHandle
;
141
if (
m_waitHandle
== null)
148
return
m_waitHandle
;
413
if (
m_waitHandle
!= null && m_currentCount == 0)
415
m_waitHandle
.Reset();
621
if (
m_waitHandle
!= null && m_currentCount == 0)
m_waitHandle
.Reset();
821
if (
m_waitHandle
!= null && returnCount == 0 && currentCount > 0)
823
m_waitHandle
.Set();
869
if (
m_waitHandle
!= null)
871
m_waitHandle
.Close();