2 writes to m_count
mscorlib (2)
system\threading\SpinWait.cs (2)
178m_count = (m_count == int.MaxValue ? YIELD_THRESHOLD : m_count + 1); 191m_count = 0;
8 references to m_count
mscorlib (8)
system\threading\SpinWait.cs (8)
95get { return m_count; } 110get { return m_count > YIELD_THRESHOLD || PlatformHelper.IsSingleProcessor; } 142int yieldsSoFar = (m_count >= YIELD_THRESHOLD ? m_count - YIELD_THRESHOLD : m_count); 174Thread.SpinWait(4 << m_count); 178m_count = (m_count == int.MaxValue ? YIELD_THRESHOLD : m_count + 1);