From b964cbe1a2e5ad19d63c76c1c04e0f74b489baa2 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Thu, 19 May 2016 13:25:47 +0200 Subject: [PATCH] Remove comments in Downloadmanager --- src/engine/downloadmanager.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/engine/downloadmanager.cpp b/src/engine/downloadmanager.cpp index 54874025ae..5b563ba104 100644 --- a/src/engine/downloadmanager.cpp +++ b/src/engine/downloadmanager.cpp @@ -274,16 +274,7 @@ void DownloadManager::downloadRequestFilesAsync(const std::string& identifier, if (_useMultithreadedDownload) { std::thread t = std::thread(downloadFunction); - ghoul::thread::setPriority(t, ghoul::thread::ThreadPriority::Lowest); -//#ifdef WIN32 -// std::thread::native_handle_type h = t.native_handle(); -// SetPriorityClass(h, IDLE_PRIORITY_CLASS); -// SetThreadPriority(h, THREAD_PRIORITY_LOWEST); -//#else -// // TODO: Implement thread priority ---abock -//#endif - t.detach(); } else