├── .gitignore ├── DummyPOE ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── DummyPOE.csproj ├── FodyWeavers.xml ├── WindowDummy.xaml └── WindowDummy.xaml.cs ├── LICENSE ├── POE2loadingPainFix.sln ├── POE2loadingPainFix ├── App.xaml ├── App.xaml.cs ├── AppConfig.cs ├── AssemblyInfo.cs ├── CPUEntry.cs ├── Config.cs ├── CpuTools.cs ├── Debugging.cs ├── DtValue.cs ├── ExceptionWindow.xaml ├── ExceptionWindow.xaml.cs ├── ExtensionTools.cs ├── FodyWeavers.xml ├── LimitMode.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MedianTools.cs ├── POE2loadingPainFix.csproj ├── PoeThread.cs ├── PoeThreadAffinity.cs ├── PoeThreadLimitThreads.cs ├── PoeThreadMain.cs ├── PoeThreadPFC.cs ├── PoeThreadRecovery.cs ├── PoeThreadSharedContext.cs ├── PoeTools.cs ├── ProcessEx.cs ├── State.cs ├── TargetProcess.cs ├── ThreadLimit.cs ├── ThreadState.cs ├── ThrottlerCriticalException.cs ├── app.manifest └── appicon.ico ├── README.md ├── README_Sources ├── images │ ├── EasyMode.png │ ├── ExpertMode.png │ ├── Settings_Affinity.png │ ├── affinity.png │ ├── auto_functions.png │ ├── exception_dialog.png │ ├── limit_settings.png │ ├── main_with_exception.png │ └── signal_limit_threads.png └── svg_signal_limit_threads.svg └── Tests └── Test.POE2loadingPainFixTests ├── MSTestSettings.cs ├── Test.POE2loadingPainFixTests.csproj └── Test_CpuTools.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/.gitignore -------------------------------------------------------------------------------- /DummyPOE/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/DummyPOE/App.xaml -------------------------------------------------------------------------------- /DummyPOE/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/DummyPOE/App.xaml.cs -------------------------------------------------------------------------------- /DummyPOE/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/DummyPOE/AssemblyInfo.cs -------------------------------------------------------------------------------- /DummyPOE/DummyPOE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/DummyPOE/DummyPOE.csproj -------------------------------------------------------------------------------- /DummyPOE/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/DummyPOE/FodyWeavers.xml -------------------------------------------------------------------------------- /DummyPOE/WindowDummy.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/DummyPOE/WindowDummy.xaml -------------------------------------------------------------------------------- /DummyPOE/WindowDummy.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/DummyPOE/WindowDummy.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/LICENSE -------------------------------------------------------------------------------- /POE2loadingPainFix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix.sln -------------------------------------------------------------------------------- /POE2loadingPainFix/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/App.xaml -------------------------------------------------------------------------------- /POE2loadingPainFix/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/App.xaml.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/AppConfig.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/AssemblyInfo.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/CPUEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/CPUEntry.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/Config.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/CpuTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/CpuTools.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/Debugging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/Debugging.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/DtValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/DtValue.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/ExceptionWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/ExceptionWindow.xaml -------------------------------------------------------------------------------- /POE2loadingPainFix/ExceptionWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/ExceptionWindow.xaml.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/ExtensionTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/ExtensionTools.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/FodyWeavers.xml -------------------------------------------------------------------------------- /POE2loadingPainFix/LimitMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/LimitMode.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/MainWindow.xaml -------------------------------------------------------------------------------- /POE2loadingPainFix/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/MainWindow.xaml.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/MedianTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/MedianTools.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/POE2loadingPainFix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/POE2loadingPainFix.csproj -------------------------------------------------------------------------------- /POE2loadingPainFix/PoeThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/PoeThread.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/PoeThreadAffinity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/PoeThreadAffinity.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/PoeThreadLimitThreads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/PoeThreadLimitThreads.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/PoeThreadMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/PoeThreadMain.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/PoeThreadPFC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/PoeThreadPFC.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/PoeThreadRecovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/PoeThreadRecovery.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/PoeThreadSharedContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/PoeThreadSharedContext.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/PoeTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/PoeTools.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/ProcessEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/ProcessEx.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/State.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/TargetProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/TargetProcess.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/ThreadLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/ThreadLimit.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/ThreadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/ThreadState.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/ThrottlerCriticalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/ThrottlerCriticalException.cs -------------------------------------------------------------------------------- /POE2loadingPainFix/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/app.manifest -------------------------------------------------------------------------------- /POE2loadingPainFix/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/POE2loadingPainFix/appicon.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README.md -------------------------------------------------------------------------------- /README_Sources/images/EasyMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/images/EasyMode.png -------------------------------------------------------------------------------- /README_Sources/images/ExpertMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/images/ExpertMode.png -------------------------------------------------------------------------------- /README_Sources/images/Settings_Affinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/images/Settings_Affinity.png -------------------------------------------------------------------------------- /README_Sources/images/affinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/images/affinity.png -------------------------------------------------------------------------------- /README_Sources/images/auto_functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/images/auto_functions.png -------------------------------------------------------------------------------- /README_Sources/images/exception_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/images/exception_dialog.png -------------------------------------------------------------------------------- /README_Sources/images/limit_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/images/limit_settings.png -------------------------------------------------------------------------------- /README_Sources/images/main_with_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/images/main_with_exception.png -------------------------------------------------------------------------------- /README_Sources/images/signal_limit_threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/images/signal_limit_threads.png -------------------------------------------------------------------------------- /README_Sources/svg_signal_limit_threads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/README_Sources/svg_signal_limit_threads.svg -------------------------------------------------------------------------------- /Tests/Test.POE2loadingPainFixTests/MSTestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/Tests/Test.POE2loadingPainFixTests/MSTestSettings.cs -------------------------------------------------------------------------------- /Tests/Test.POE2loadingPainFixTests/Test.POE2loadingPainFixTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/Tests/Test.POE2loadingPainFixTests/Test.POE2loadingPainFixTests.csproj -------------------------------------------------------------------------------- /Tests/Test.POE2loadingPainFixTests/Test_CpuTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrimsonED1/POE2loadingPainFix/HEAD/Tests/Test.POE2loadingPainFixTests/Test_CpuTools.cs --------------------------------------------------------------------------------