2 writes to _numThreadsAddedDueToBlocking
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.Blocking.cs (2)
147_numThreadsAddedDueToBlocking -= toSubtract; 228_numThreadsAddedDueToBlocking += (short)(newNumThreadsGoal - numThreadsGoal);
3 references to _numThreadsAddedDueToBlocking
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.Blocking.cs (3)
81_numThreadsAddedDueToBlocking > 0 && 141if (_numThreadsAddedDueToBlocking <= 0) 146short toSubtract = Math.Min((short)(numThreadsGoal - targetThreadsGoal), _numThreadsAddedDueToBlocking);