2 writes to _previousBlockingAdjustmentDelayMs
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.GateThread.cs (2)
293_previousBlockingAdjustmentDelayMs = delayMs; 296public void ClearBlockingAdjustmentDelay() => _previousBlockingAdjustmentDelayMs = 0;
5 references to _previousBlockingAdjustmentDelayMs
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.GateThread.cs (5)
297public bool HasBlockingAdjustmentDelay => _previousBlockingAdjustmentDelayMs != 0; 306if (_previousBlockingAdjustmentDelayMs == 0) 316elapsedMsSincePreviousBlockingAdjustmentDelay < _previousBlockingAdjustmentDelayMs 317? _previousBlockingAdjustmentDelayMs - elapsedMsSincePreviousBlockingAdjustmentDelay 349return elapsedMsSincePreviousBlockingAdjustmentDelay >= _previousBlockingAdjustmentDelayMs;