thread priorities set to normal
This commit is contained in:
@@ -91,9 +91,9 @@ namespace wiJobSystem
|
||||
DWORD_PTR affinity_result = SetThreadAffinityMask(handle, affinityMask);
|
||||
assert(affinity_result > 0);
|
||||
|
||||
// Increase thread priority:
|
||||
BOOL priority_result = SetThreadPriority(handle, THREAD_PRIORITY_HIGHEST);
|
||||
assert(priority_result != 0);
|
||||
//// Increase thread priority:
|
||||
//BOOL priority_result = SetThreadPriority(handle, THREAD_PRIORITY_HIGHEST);
|
||||
//assert(priority_result != 0);
|
||||
|
||||
// Name the thread:
|
||||
std::wstring wthreadname = L"wiJobSystem_" + std::to_wstring(threadID);
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace wiVersion
|
||||
// minor features, major updates, breaking compatibility changes
|
||||
const int minor = 56;
|
||||
// minor bug fixes, alterations, refactors, updates
|
||||
const int revision = 36;
|
||||
const int revision = 37;
|
||||
|
||||
const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user