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 &&
141
if (
_numThreadsAddedDueToBlocking
<= 0)
146
short toSubtract = Math.Min((short)(numThreadsGoal - targetThreadsGoal),
_numThreadsAddedDueToBlocking
);