1 write to _currentAbsoluteThreshold
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\Timer.cs (1)
321_currentAbsoluteThreshold = nowTicks + ShortTimersThresholdMilliseconds;
3 references to _currentAbsoluteThreshold
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Threading\Timer.cs (3)
248bool targetShortList = (nowTicks + timer._dueTime) - _currentAbsoluteThreshold <= 0; 302long remaining = _currentAbsoluteThreshold - nowTicks; 350bool shouldBeShort = _currentAbsoluteThreshold - absoluteDueTime >= 0;