4 references to UNLIMITED_PROCESSING
mscorlib (4)
system\threading\Tasks\ConcurrentExclusiveSchedulerPair.cs (4)
69
private const int DEFAULT_MAXITEMSPERTASK =
UNLIMITED_PROCESSING
;
123
if (m_maxConcurrencyLevel ==
UNLIMITED_PROCESSING
) m_maxConcurrencyLevel = Int32.MaxValue;
124
if (m_maxItemsPerTask ==
UNLIMITED_PROCESSING
) m_maxItemsPerTask = Int32.MaxValue;
513
(processingMode == ProcessingMode.ProcessingConcurrentTasks && (maxConcurrencyLevel >= 1 || maxConcurrencyLevel ==
UNLIMITED_PROCESSING
)) ||