diff --git a/src/DotFastLZ.Packaging/SixPack.cs b/src/DotFastLZ.Packaging/SixPack.cs index b7048fe..78b9767 100644 --- a/src/DotFastLZ.Packaging/SixPack.cs +++ b/src/DotFastLZ.Packaging/SixPack.cs @@ -677,11 +677,12 @@ public static int BenchmarkSpeed(int compress_level, string input_file) /* shamelessly copied from QuickLZ 1.20 test program */ { - Console.WriteLine("Setting HIGH_PRIORITY_CLASS..."); - { - Process currentProcess = Process.GetCurrentProcess(); - currentProcess.PriorityClass = ProcessPriorityClass.High; - } + // multi platform error + // Console.WriteLine("Setting HIGH_PRIORITY_CLASS..."); + // { + // Process currentProcess = Process.GetCurrentProcess(); + // currentProcess.PriorityClass = ProcessPriorityClass.High; + // } Console.WriteLine($"Benchmarking FastLZ Level {compress_level}, please wait...");