2 writes to ThreadsToAddWithoutDelay
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.Blocking.cs (2)
320
ThreadsToAddWithoutDelay
= (short)(processorCount * blocking_threadsToAddWithoutDelay_procCountFactor);
324
ThreadsToAddWithoutDelay
= MaxPossibleThreadCount;
4 references to ThreadsToAddWithoutDelay
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.Blocking.cs (4)
157
(short)Math.Min((ushort)(_minThreads + BlockingConfig.
ThreadsToAddWithoutDelay
), (ushort)_maxThreads);
321
if (
ThreadsToAddWithoutDelay
> MaxPossibleThreadCount ||
322
ThreadsToAddWithoutDelay
/ processorCount != blocking_threadsToAddWithoutDelay_procCountFactor)
328
short maxThreadsPerDelayStep = (short)(MaxPossibleThreadCount -
ThreadsToAddWithoutDelay
);