10 references to YieldThreshold
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Threading\SpinLock.cs (1)
353spinner.Count = SpinWait.YieldThreshold;
src\libraries\System.Private.CoreLib\src\System\Threading\SpinWait.cs (9)
120public bool NextSpinWillYield => _count >= YieldThreshold || Environment.IsSingleProcessor; 152if (sleep1Threshold >= 0 && sleep1Threshold < YieldThreshold) 154sleep1Threshold = YieldThreshold; 163Debug.Assert(sleep1Threshold < 0 || sleep1Threshold >= YieldThreshold); 175_count >= YieldThreshold && 176((_count >= sleep1Threshold && sleep1Threshold >= 0) || (_count - YieldThreshold) % 2 == 0) 201int yieldsSoFar = _count >= YieldThreshold ? (_count - YieldThreshold) / 2 : _count; 238_count = (_count == int.MaxValue ? YieldThreshold : _count + 1);