Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/Extensions/ParallelExtensions.cs')
-rw-r--r--UVtools.Core/Extensions/ParallelExtensions.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/UVtools.Core/Extensions/ParallelExtensions.cs b/UVtools.Core/Extensions/ParallelExtensions.cs
index 45d54af..2f747ad 100644
--- a/UVtools.Core/Extensions/ParallelExtensions.cs
+++ b/UVtools.Core/Extensions/ParallelExtensions.cs
@@ -15,6 +15,7 @@ namespace UVtools.Core.Extensions
{
public static class ParallelExtensions
{
+ //public static readonly ParallelOptions ParallelSingleThread = new() { MaxDegreeOfParallelism = 1 };
public static void ForAllInApproximateOrder<TSource>(this ParallelQuery<TSource> source, Action<TSource> action)
{
Partitioner.Create(source)